From 198591dbd7b0b6dd311ab9265d4cda4a733ee280 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Fri, 5 Aug 2022 21:18:19 -0400 Subject: whoops don't need it here --- frontend/src/components/store/Store.tsx | 8 -------- 1 file changed, 8 deletions(-) (limited to 'frontend/src/components/store') 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); -- cgit v1.2.3