@dripfi/drip-sdk 1.4.13 → 1.4.15
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/PerqApi.js +1 -1
- package/package.json +1 -1
package/dist/PerqApi.js
CHANGED
@@ -315,7 +315,7 @@ class PerqApi {
|
|
315
315
|
const res = await fetch(`${this.perqSdk.perqConfig.route}/api-be/api/user/podWallets/${walletAddress}`);
|
316
316
|
if (res.ok) {
|
317
317
|
const data = await res.json();
|
318
|
-
return data
|
318
|
+
return data;
|
319
319
|
}
|
320
320
|
else {
|
321
321
|
throw Error(`${await res.text()}`);
|