From 0636bac812bc6f8b82b07a2fc70ff15722b24687 Mon Sep 17 00:00:00 2001 From: kyle-ssg Date: Wed, 29 Oct 2025 09:39:37 +0000 Subject: [PATCH 1/2] Add identifier --- frontend/web/components/EditIdentity.tsx | 4 +-- frontend/web/components/pages/UserPage.tsx | 28 ++++++++++++--------- frontend/web/components/pages/UsersPage.tsx | 8 ++++++ 3 files changed, 26 insertions(+), 14 deletions(-) diff --git a/frontend/web/components/EditIdentity.tsx b/frontend/web/components/EditIdentity.tsx index 1ac2d8a3ba1e..e614fc12e615 100644 --- a/frontend/web/components/EditIdentity.tsx +++ b/frontend/web/components/EditIdentity.tsx @@ -62,10 +62,10 @@ const EditIdentity: FC = ({ data, environmentId }) => { /> } - > - View and manage feature states and traits for this user. -
- + >
diff --git a/frontend/web/components/pages/UsersPage.tsx b/frontend/web/components/pages/UsersPage.tsx index 555091f0bef1..ecd974c7276f 100644 --- a/frontend/web/components/pages/UsersPage.tsx +++ b/frontend/web/components/pages/UsersPage.tsx @@ -170,6 +170,14 @@ const UsersPage: FC<{ props: any }> = (props) => { + Identifier +
+ + ) + } filterRowContent={ showAliases && (
From 298957b4c0e1d89fc82f6a809b05c0962bab23c8 Mon Sep 17 00:00:00 2001 From: kyle-ssg Date: Wed, 29 Oct 2025 09:46:32 +0000 Subject: [PATCH 2/2] Add identifier --- frontend/web/components/pages/UserPage.tsx | 112 +++++++++++--------- frontend/web/components/pages/UsersPage.tsx | 2 +- 2 files changed, 61 insertions(+), 53 deletions(-) diff --git a/frontend/web/components/pages/UserPage.tsx b/frontend/web/components/pages/UserPage.tsx index 6428eba364b9..9d1952bdfd7a 100644 --- a/frontend/web/components/pages/UserPage.tsx +++ b/frontend/web/components/pages/UserPage.tsx @@ -62,6 +62,7 @@ import UsersIcon from 'components/svg/UsersIcon' import IdentityTraits from 'components/IdentityTraits' import { useGetIdentitySegmentsQuery } from 'common/services/useIdentitySegment' import useDebouncedSearch from 'common/useDebouncedSearch' +import SettingTitle from 'components/SettingTitle' const width = [200, 48, 78] @@ -318,60 +319,37 @@ const UserPage: FC = () => { <> -
- Identifier:{' '} - - + Identifier:{' '} + + + + {showAliases && ( +
+ Alias: } - /> - - {showAliases && ( -
- - Alias:{' '} - - } - > - Aliases allow you to add searchable names to an - identity - - {!!identity && ( - - )} -
- )} -
- View and manage feature states and traits for this - user. -
+ > + Aliases allow you to add searchable names to an + identity +
+ {!!identity && ( + + )} +
+ )} +
+ View and manage feature states and traits for this + identity.
-
} >
@@ -1038,6 +1016,36 @@ const UserPage: FC = () => { userId={identity?.identity?.identifier || id} /> + + Delete Identity + + +

+ Identities can be re-added here or via one of our + SDKs +

+ +
+
+
diff --git a/frontend/web/components/pages/UsersPage.tsx b/frontend/web/components/pages/UsersPage.tsx index ecd974c7276f..b7ec660a6d22 100644 --- a/frontend/web/components/pages/UsersPage.tsx +++ b/frontend/web/components/pages/UsersPage.tsx @@ -62,7 +62,7 @@ export const removeIdentity = ( } }) }, - title: 'Delete User', + title: 'Delete Identity', yesText: 'Confirm', }) }