From faef2c17aaa42b592fce5d0014c3be78ad29093b Mon Sep 17 00:00:00 2001 From: ryjm Date: Wed, 29 Sep 2021 14:38:29 -0400 Subject: [PATCH] bitcoin: fix wallet --- pkg/btc-wallet/src/hooks/useSettings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/btc-wallet/src/hooks/useSettings.tsx b/pkg/btc-wallet/src/hooks/useSettings.tsx index 8460c3998..4845b5cf7 100644 --- a/pkg/btc-wallet/src/hooks/useSettings.tsx +++ b/pkg/btc-wallet/src/hooks/useSettings.tsx @@ -159,7 +159,7 @@ export const SettingsProvider: React.FC = ({ channel, children }) => { const initializeSettings = () => { let app = 'settings-store'; - let path = `/bucket/${window.desk}btc-wallet`; + let path = `/bucket/${window.desk}/btc-wallet`; fetch(`/~/scry/${app}${path}.json`) .then((res) => res.json())