fix: renamed Agent to User in Settings

This commit is contained in:
Shariq Ansari 2025-06-17 12:03:47 +05:30
parent e9812495e9
commit 463d60b650
3 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@
{{
fetchContacts
? __('No results found')
: __('Type an email address to add')
: __('Type an email address to invite')
}}
</div>
<ComboboxOption

View File

@ -3,7 +3,7 @@
<!-- Header -->
<div class="flex items-center justify-between">
<h2 class="flex gap-2 text-xl font-semibold leading-none h-5">
{{ __('Agents') }}
{{ __('Users') }}
</h2>
<div class="flex item-center space-x-2 mr-2">
<FormControl

View File

@ -85,7 +85,7 @@ const tabs = computed(() => {
component: markRaw(ProfileSettings),
},
{
label: __('Agents'),
label: __('Users'),
icon: 'user',
component: markRaw(Agents),
},
@ -96,7 +96,7 @@ const tabs = computed(() => {
condition: () => isManager(),
},
{
label: __('Invite Agent'),
label: __('Invite User'),
icon: InviteIcon,
component: markRaw(InviteAgentPage),
condition: () => isManager(),