From 0736a6f9952b6271e103f23963e0206829c1cb3f Mon Sep 17 00:00:00 2001 From: marios8543 Date: Tue, 17 Oct 2023 16:53:13 +0300 Subject: [PATCH] fix bad type 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 40809c074..fd458bef3 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;