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 fetchContacts
? __('No results found') ? __('No results found')
: __('Type an email address to add') : __('Type an email address to invite')
}} }}
</div> </div>
<ComboboxOption <ComboboxOption

View File

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

View File

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