chore: fixed settings

This commit is contained in:
Jannat Patel
2025-04-22 16:17:29 +05:30
parent 66d4798db3
commit 470123c77a
7 changed files with 37 additions and 11 deletions

View File

@@ -322,11 +322,11 @@ const tabsStructure = computed(() => {
icon: 'LogIn',
fields: [
{
label: 'Identify User Persona',
label: 'Identify User Category',
name: 'user_category',
type: 'checkbox',
description:
'Enable this option to identify the user persona during signup.',
'Enable this option to identify the user category during signup.',
},
{
label: 'Disable signup',

View File

@@ -172,6 +172,11 @@ const isPersonaCaptured = async () => {
const identifyUserPersona = async () => {
let personaCaptured = await isPersonaCaptured()
debugger
console.log('personaCaptured', personaCaptured)
console.log('user.data?.is_system_manager', user.data?.is_system_manager)
console.log('user.data?.developer_mode', user.data?.developer_mode)
if (
user.data?.is_system_manager &&
!user.data?.developer_mode &&