infra changes
This commit is contained in:
@@ -24,4 +24,5 @@ export const DevStore = createLocalStore<IDevStore>({
|
||||
reloadTabId: undefined,
|
||||
});
|
||||
|
||||
|
||||
debugStore({ DevStore });
|
||||
|
||||
@@ -17,7 +17,7 @@ interface Actions {
|
||||
getDeviceId(): Promise<string>;
|
||||
}
|
||||
|
||||
const ExtensionStore = createLocalStore<IExtensionStore, Actions>(
|
||||
export const ExtensionStore = createLocalStore<IExtensionStore, Actions>(
|
||||
{
|
||||
version: chrome.runtime.getManifest().version,
|
||||
lastUpdate: Date.now(),
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { createLocalStore, debugStore, Serialized } from 'chrome-extension-toolkit';
|
||||
import { createLocalStore, debugStore } from 'chrome-extension-toolkit';
|
||||
import { Course } from 'src/shared/types/Course';
|
||||
/**
|
||||
* A store that is used for storing user options
|
||||
@@ -44,7 +44,7 @@ const UserScheduleStore = createLocalStore<IUserScheduleStore, Actions>(
|
||||
const schedules = await store.getSchedules();
|
||||
const scheduleToEdit = schedules[name];
|
||||
if (scheduleToEdit) {
|
||||
scheduleToEdit.push(course as Serialized<Course>);
|
||||
scheduleToEdit.push(course);
|
||||
await store.setSchedules(schedules);
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user