@volr/react 0.1.95 → 0.1.96
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.js
CHANGED
|
@@ -19638,7 +19638,7 @@ function useVolrPaymentApi() {
|
|
|
19638
19638
|
if (options.skip) params.append("skip", String(options.skip));
|
|
19639
19639
|
if (options.status) params.append("status", options.status);
|
|
19640
19640
|
const queryString = params.toString();
|
|
19641
|
-
const url = queryString ? `/payments?${queryString}` : "/payments";
|
|
19641
|
+
const url = queryString ? `/payments/history?${queryString}` : "/payments/history";
|
|
19642
19642
|
return client.get(url);
|
|
19643
19643
|
},
|
|
19644
19644
|
[client]
|