We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bce746f commit bdaf91dCopy full SHA for bdaf91d
src/index.tsx
@@ -46,6 +46,7 @@ import HubProvider from './contexts/hub';
46
47
import { INDEX_HTTPS, INDEX_WEBSOCKET } from './constants/config';
48
import ScriptingProvider from './contexts/scripting/scripting';
49
+import { localStorageKeys } from './constants/localStorageKeys';
50
51
const httpLink = new HttpLink({
52
uri: INDEX_HTTPS,
@@ -99,6 +100,9 @@ if (container === null) {
99
100
101
const root = createRoot(container);
102
103
+// temp
104
+localStorage.removeItem(localStorageKeys.settings.adviserAudio);
105
+
106
function Providers({ children }: { children: React.ReactNode }) {
107
return (
108
<Provider store={store}>
0 commit comments