@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 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]