diff options
| author | AAGaming <aa@mail.catvibers.me> | 2022-07-03 17:37:39 -0400 |
|---|---|---|
| committer | AAGaming <aa@mail.catvibers.me> | 2022-07-03 17:37:39 -0400 |
| commit | 6c42661f860f63dbb6ca3f90e612190bdbb34cb3 (patch) | |
| tree | 34e03dfddb012de79979b275eb7a0cc89f341b7a | |
| parent | 2b3c219e382a889ef299b8cb49abfbbd15ec1686 (diff) | |
| download | decky-loader-6c42661f860f63dbb6ca3f90e612190bdbb34cb3.tar.gz decky-loader-6c42661f860f63dbb6ca3f90e612190bdbb34cb3.zip | |
hack: temp hide example plugin
| -rw-r--r-- | frontend/src/components/store/Store.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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()); |
