Skip to content

Commit

Permalink
fix bad type on store.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
marios8543 committed Oct 17, 2023
1 parent d454a40 commit 0736a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function getStore(): Promise<Store> {

export async function getPluginList(): Promise<StorePlugin[]> {
let version = await window.DeckyPluginLoader.updateVersion();
let store = await getSetting<Store>('store', null);
let store = await getSetting<Store | null>('store', null);

let customURL = await getSetting<string>('store-url', 'https://plugins.deckbrew.xyz/plugins');
let storeURL;
Expand Down

0 comments on commit 0736a6f

Please sign in to comment.