feima-shortcuts 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/generateApi/index.js +1 -1
package/package.json
CHANGED
package/src/generateApi/index.js
CHANGED
|
@@ -142,7 +142,7 @@ export const request = <T>(
|
|
|
142
142
|
options: ApiRequestOptions
|
|
143
143
|
): CancelablePromise<T> => {
|
|
144
144
|
return new CancelablePromise((resolve, reject, onCancel) => {
|
|
145
|
-
const url = \`\${config.BASE}\${options.
|
|
145
|
+
const url = \`\${config.BASE}\${options.url}\`;
|
|
146
146
|
|
|
147
147
|
const source = axios.CancelToken.source();
|
|
148
148
|
|