summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorOMGDuke <OMGDuke@users.noreply.github.com>2022-08-12 14:54:57 +0100
committerGitHub <noreply@github.com>2022-08-12 09:54:57 -0400
commitdee2cfa47ba8d473d48f12b023f92780e557de6a (patch)
tree891b96aa507a9850130f0a7019608b5258002bd7 /frontend
parent463403be232a37f02681e7ad290c798e3bf4cdda (diff)
downloaddecky-loader-dee2cfa47ba8d473d48f12b023f92780e557de6a.tar.gz
decky-loader-dee2cfa47ba8d473d48f12b023f92780e557de6a.zip
remove console.log that was causing lots of log spam (#138)
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/router-hook.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/router-hook.tsx b/frontend/src/router-hook.tsx
index e42307ee..9d38fc52 100644
--- a/frontend/src/router-hook.tsx
+++ b/frontend/src/router-hook.tsx
@@ -60,7 +60,6 @@ class RouterHook extends Logger {
routeList[routerIndex] = newRouterArray;
}
routeList.forEach((route: Route, index: number) => {
- console.log(route);
const replaced = toReplace.get(route?.props?.path as string);
if (replaced) {
routeList[index].props.children = replaced;