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 8688819 commit cfb9595Copy full SHA for cfb9595
packages/dev/s2-docs/src/useLocalStorage.ts
@@ -12,7 +12,7 @@ class Store {
12
subscriptions: Set<() => void>;
13
14
constructor(key: string, defaultValue: string) {
15
- this.key = key;
+ this.key = 's2.' + key;
16
this.defaultValue = defaultValue;
17
this.subscriptions = new Set();
18
}
0 commit comments