mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 12:21:58 +00:00
whoops don't need it here
This commit is contained in:
@@ -98,10 +98,6 @@ const StorePage: FC<{}> = () => {
|
|||||||
(async () => {
|
(async () => {
|
||||||
const res = await fetch('https://beta.deckbrew.xyz/plugins', {
|
const res = await fetch('https://beta.deckbrew.xyz/plugins', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
credentials: 'include',
|
|
||||||
headers: {
|
|
||||||
Authentication: window.deckyAuthToken,
|
|
||||||
},
|
|
||||||
}).then((r) => r.json());
|
}).then((r) => r.json());
|
||||||
console.log(res);
|
console.log(res);
|
||||||
setData(res.filter((x: StorePlugin) => x.name !== 'Example Plugin'));
|
setData(res.filter((x: StorePlugin) => x.name !== 'Example Plugin'));
|
||||||
@@ -109,10 +105,6 @@ const StorePage: FC<{}> = () => {
|
|||||||
(async () => {
|
(async () => {
|
||||||
const res = await fetch('https://plugins.deckbrew.xyz/get_plugins', {
|
const res = await fetch('https://plugins.deckbrew.xyz/get_plugins', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
credentials: 'include',
|
|
||||||
headers: {
|
|
||||||
Authentication: window.deckyAuthToken,
|
|
||||||
},
|
|
||||||
}).then((r) => r.json());
|
}).then((r) => r.json());
|
||||||
console.log(res);
|
console.log(res);
|
||||||
setLegacyData(res);
|
setLegacyData(res);
|
||||||
|
|||||||
Reference in New Issue
Block a user