We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7072ca commit 21373f1Copy full SHA for 21373f1
components/api.ts
@@ -35,11 +35,11 @@ export class Trope {
35
}
36
37
private async getFromCache() {
38
- return storage.getItem<Trope>(`local:${this.storageKey}`);
+ return storage.getItem<Trope>(`local:${this.storageKey}-v1`);
39
40
41
private async setToCache() {
42
- storage.setItem(`local:${this.storageKey}`, this);
+ storage.setItem(`local:${this.storageKey}-v1`, this);
43
44
45
/* Fetches a statically calculated url of there the laconic should be */
0 commit comments