@volr/react 0.1.95 → 0.1.97
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -19662,7 +19662,7 @@ function useVolrPaymentApi() {
|
|
|
19662
19662
|
if (options.skip) params.append("skip", String(options.skip));
|
|
19663
19663
|
if (options.status) params.append("status", options.status);
|
|
19664
19664
|
const queryString = params.toString();
|
|
19665
|
-
const url = queryString ? `/payments?${queryString}` : "/payments";
|
|
19665
|
+
const url = queryString ? `/payments/history?${queryString}` : "/payments/history";
|
|
19666
19666
|
return client.get(url);
|
|
19667
19667
|
},
|
|
19668
19668
|
[client]
|