diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2023-10-17 13:52:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-17 13:52:11 +0100 |
| commit | f53a3f383da5de483d4f402ed785c8800da60bf0 (patch) | |
| tree | 5870f1588dc6e461e42cdbae1d31b6238b4551df /frontend/src | |
| parent | 407e6479939d02633512785694defd92b1d8b39c (diff) | |
| download | decky-loader-f53a3f383da5de483d4f402ed785c8800da60bf0.tar.gz decky-loader-f53a3f383da5de483d4f402ed785c8800da60bf0.zip | |
fix typo
this is what i get for commiting to main :pensive:
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/store.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/store.tsx b/frontend/src/store.tsx index fd194469..846c4766 100644 --- a/frontend/src/store.tsx +++ b/frontend/src/store.tsx @@ -44,7 +44,7 @@ export async function getPluginList(): Promise<StorePlugin[]> { if (store === null) { console.log('Could not get store, using Default.'); await setSetting('store', Store.Default); - store = Store.Default + store = Store.Default; } switch (+store) { case Store.Default: @@ -60,13 +60,13 @@ export async function getPluginList(): Promise<StorePlugin[]> { console.error('Somehow you ended up without a standard URL, using the default URL.'); storeURL = 'https://plugins.deckbrew.xyz/plugins'; break; + } return fetch(storeURL, { method: 'GET', headers: { 'X-Decky-Version': version.current, }, }).then((r) => r.json()); - } } export async function installFromURL(url: string) { |
