summaryrefslogtreecommitdiff
path: root/frontend/src/store.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/store.tsx')
-rw-r--r--frontend/src/store.tsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/frontend/src/store.tsx b/frontend/src/store.tsx
index 5391a15a..dfd9b04b 100644
--- a/frontend/src/store.tsx
+++ b/frontend/src/store.tsx
@@ -82,27 +82,6 @@ export async function getPluginList(
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());
- }
- switch (+store) {
- case Store.Default:
- storeURL = 'https://plugins.deckbrew.xyz/plugins';
- break;
- case Store.Testing:
- storeURL = 'https://testing.deckbrew.xyz/plugins';
- break;
- case Store.Custom:
- storeURL = customURL;
- break;
- default:
- console.error('Somehow you ended up without a standard URL, using the default URL.');
- storeURL = 'https://plugins.deckbrew.xyz/plugins';
- break;
}
return fetch(storeURL + query, {
method: 'GET',