diff options
| author | marios8543 <marios8543@gmail.com> | 2023-10-17 17:11:50 +0300 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-17 17:11:50 +0300 |
| commit | 19793d71e671a9888bf6e383c1e453620d9dd36d (patch) | |
| tree | c7e53d5472c347ae3fa5ace6ce9bc040b53ff5a6 | |
| parent | 796b8b49f41657a44764c8557b5413bb3935e790 (diff) | |
| download | decky-loader-19793d71e671a9888bf6e383c1e453620d9dd36d.tar.gz decky-loader-19793d71e671a9888bf6e383c1e453620d9dd36d.zip | |
Fix type error on store.tsx
| -rw-r--r-- | frontend/src/store.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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<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; if (store === null) { |
