From 1fa926ac04d510a923cc00b607b2b66229b4f582 Mon Sep 17 00:00:00 2001 From: SabreCat Date: Tue, 22 Aug 2023 12:23:20 -0500 Subject: [PATCH] Squashed commit of the following: commit 91d5efa683bb2f1c71b291fab4ff5924bddae1ce Author: SabreCat Date: Fri Aug 18 22:18:57 2023 -0500 refactor(static): remove broken, unused apps page --- website/client/src/components/static/app.vue | 26 -------------------- website/client/src/router/static-routes.js | 4 --- 2 files changed, 30 deletions(-) delete mode 100644 website/client/src/components/static/app.vue diff --git a/website/client/src/components/static/app.vue b/website/client/src/components/static/app.vue deleted file mode 100644 index 46bbd4d315..0000000000 --- a/website/client/src/components/static/app.vue +++ /dev/null @@ -1,26 +0,0 @@ - diff --git a/website/client/src/router/static-routes.js b/website/client/src/router/static-routes.js index 015ba38d0a..6ff19fc4ee 100644 --- a/website/client/src/router/static-routes.js +++ b/website/client/src/router/static-routes.js @@ -5,7 +5,6 @@ import { NotFoundPage } from './shared-route-imports'; const StaticWrapper = () => import(/* webpackChunkName: "entry" */'@/components/static/staticWrapper'); const HomePage = () => import(/* webpackChunkName: "entry" */'@/components/static/home'); -const AppPage = () => import(/* webpackChunkName: "static" */'@/components/static/app'); const AppleRedirectPage = () => import(/* webpackChunkName: "static" */'@/components/static/appleRedirect'); const ClearBrowserDataPage = () => import(/* webpackChunkName: "static" */'@/components/static/clearBrowserData'); const CommunityGuidelinesPage = () => import(/* webpackChunkName: "static" */'@/components/static/communityGuidelines'); @@ -28,9 +27,6 @@ export const STATIC_ROUTES = { path: '/static', component: StaticWrapper, children: [ - { - name: 'app', path: 'app', component: AppPage, meta: { requiresLogin: false }, - }, { name: 'appleRedirect', path: 'apple-redirect', component: AppleRedirectPage, meta: { requiresLogin: false }, },