Fix type error on store.tsx

This commit is contained in:
marios8543
2023-10-17 17:11:50 +03:00
parent 39f64ca666
commit da9217ac4a
-1
View File
@@ -39,7 +39,6 @@ export async function getStore(): Promise<Store> {
export async function getPluginList(): Promise<StorePlugin[]> {
let version = await window.DeckyPluginLoader.updateVersion();
let store = await getSetting<Store | null>('store', null);
let customURL = await getSetting<string>('store-url', 'https://plugins.deckbrew.xyz/plugins');
let storeURL;
if (store === null) {