From 19793d71e671a9888bf6e383c1e453620d9dd36d Mon Sep 17 00:00:00 2001 From: marios8543 Date: Tue, 17 Oct 2023 17:11:50 +0300 Subject: Fix type error on store.tsx --- frontend/src/store.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/store.tsx b/frontend/src/store.tsx index 846c4766..2cc1495d 100644 --- a/frontend/src/store.tsx +++ b/frontend/src/store.tsx @@ -38,7 +38,7 @@ export async function getStore(): Promise { export async function getPluginList(): Promise { let version = await window.DeckyPluginLoader.updateVersion(); - let store = await getSetting('store', null); + let store = await getSetting('store', null); let customURL = await getSetting('store-url', 'https://plugins.deckbrew.xyz/plugins'); let storeURL; if (store === null) { -- cgit v1.2.3