fixing errors

This commit is contained in:
Sriram Hariharan
2023-09-17 14:55:33 -05:00
parent 4ae2966e98
commit e199a0b766
13 changed files with 26 additions and 51 deletions

View File

@@ -10,9 +10,9 @@ interface IExtensionStore {
lastUpdate: number;
}
export const extensionStore = createLocalStore<IExtensionStore>({
export const ExtensionStore = createLocalStore<IExtensionStore>({
version: chrome.runtime.getManifest().version,
lastUpdate: Date.now(),
});
debugStore({ extensionStore });
debugStore({ ExtensionStore });