Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
this is what i get for commiting to main 😔
  • Loading branch information
PartyWumpus authored and marios8543 committed Oct 17, 2023
1 parent 2cdb491 commit a231225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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) {
Expand Down

0 comments on commit a231225

Please sign in to comment.