whoops don't need it here

This commit is contained in:
AAGaming
2022-08-05 21:18:19 -04:00
parent f21d34506d
commit 198591dbd7
-8
View File
@@ -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);