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.
This commit is contained in:
Shivam Mishra
2025-07-22 10:24:53 +05:30
committed by GitHub
parent b71a0da10d
commit dc49ae2515

View File

@@ -56,6 +56,7 @@ export default {
return [
'billing_settings_index',
'settings_inbox_list',
'general_settings_index',
'agent_list',
].includes(this.$route.name);
},