From dc49ae2515d325f026ffddfadaf915bea9e76313 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Tue, 22 Jul 2025 10:24:53 +0530 Subject: [PATCH] feat: Exclude account settings page from upgrade paywall (#11998) This pull request includes a small change to the `Dashboard.vue` file. The change adds `'general_settings_index'` to the list of route names checked for inclusion. --- app/javascript/dashboard/routes/dashboard/Dashboard.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/dashboard/routes/dashboard/Dashboard.vue b/app/javascript/dashboard/routes/dashboard/Dashboard.vue index ae54e9a7c..3d2610727 100644 --- a/app/javascript/dashboard/routes/dashboard/Dashboard.vue +++ b/app/javascript/dashboard/routes/dashboard/Dashboard.vue @@ -56,6 +56,7 @@ export default { return [ 'billing_settings_index', 'settings_inbox_list', + 'general_settings_index', 'agent_list', ].includes(this.$route.name); },