From 98a6795bdffce894298abab299f37d8077004bfb Mon Sep 17 00:00:00 2001 From: Melissa Autumn Date: Wed, 24 Apr 2024 10:42:28 -0700 Subject: [PATCH] Legal and privacy should be public routes --- frontend/src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 09877ff0d..fbba66489 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -134,7 +134,7 @@ const scheduleStore = useScheduleStore(); // true if route can be accessed without authentication const routeIsPublic = computed( - () => ['availability', 'home', 'login', 'post-login', 'confirmation'].includes(route.name), + () => ['availability', 'home', 'login', 'post-login', 'confirmation', 'legal', 'privacy'].includes(route.name), ); const routeIsHome = computed( () => ['home'].includes(route.name),