From 6c42661f860f63dbb6ca3f90e612190bdbb34cb3 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sun, 3 Jul 2022 17:37:39 -0400 Subject: hack: temp hide example plugin --- frontend/src/components/store/Store.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/src/components') diff --git a/frontend/src/components/store/Store.tsx b/frontend/src/components/store/Store.tsx index f28434dd..01cf383d 100644 --- a/frontend/src/components/store/Store.tsx +++ b/frontend/src/components/store/Store.tsx @@ -70,7 +70,7 @@ const StorePage: FC<{}> = () => { (async () => { const res = await fetch('https://beta.deckbrew.xyz/plugins', { method: 'GET' }).then((r) => r.json()); console.log(res); - setData(res); + setData(res.filter((x: StorePlugin) => x.name !== 'Example Plugin')); })(); (async () => { const res = await fetch('https://plugins.deckbrew.xyz/get_plugins', { method: 'GET' }).then((r) => r.json()); -- cgit v1.2.3