schoolbox web extension :)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: state wrapper not using latest storage value

willow 0a551c6b 623d6540

+1 -1
+1 -1
src/utils/state.svelte.ts
··· 20 20 21 21 async set(updates: Partial<T>) { 22 22 const newState = { 23 - ...($state.snapshot(this.state) as T), 23 + ...(await this.storage.getValue()), 24 24 ...updates, 25 25 }; 26 26