summaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/components/store/Store.tsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/frontend/src/components/store/Store.tsx b/frontend/src/components/store/Store.tsx
index 86318fd5..16e6994f 100644
--- a/frontend/src/components/store/Store.tsx
+++ b/frontend/src/components/store/Store.tsx
@@ -98,10 +98,6 @@ const StorePage: FC<{}> = () => {
(async () => {
const res = await fetch('https://beta.deckbrew.xyz/plugins', {
method: 'GET',
- credentials: 'include',
- headers: {
- Authentication: window.deckyAuthToken,
- },
}).then((r) => r.json());
console.log(res);
setData(res.filter((x: StorePlugin) => x.name !== 'Example Plugin'));
@@ -109,10 +105,6 @@ const StorePage: FC<{}> = () => {
(async () => {
const res = await fetch('https://plugins.deckbrew.xyz/get_plugins', {
method: 'GET',
- credentials: 'include',
- headers: {
- Authentication: window.deckyAuthToken,
- },
}).then((r) => r.json());
console.log(res);
setLegacyData(res);