schoolbox web extension :)
0
fork

Configure Feed

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

fix(plugins/changeLogo): storage migration

willow 364ff392 23533a6e

+2 -3
+2 -3
src/utils/storage/global.ts
··· 26 26 const changeLogo = plugins.find((plugin) => plugin.meta.id === "changeLogo"); 27 27 28 28 if (changeLogo) { 29 - const { logos } = await import("@/entrypoints/plugins/changeLogo"); 30 29 const s = changeLogo.settings as LogoSettings; 31 - if (Object.keys(logos).includes(themeLogo)) s.logo.set({ id: themeLogo }); 30 + if (["schooltape", "schooltape-rainbow", "schooltape-legacy", "catppuccin", "schoolbox"].includes(themeLogo)) 31 + s.logo.set({ id: themeLogo }); 32 32 s.setAsFavicon.set({ toggle: themeLogoAsFavicon }); 33 33 } 34 - 35 34 return rest; 36 35 }, 37 36 },