From 9f26d09ecada67ee62c0b8270d6fb1637a1d3733 Mon Sep 17 00:00:00 2001 From: Ashley Smith Date: Wed, 11 Dec 2024 10:49:57 -0700 Subject: [PATCH] feedback changes --- .../ApiKeyManagement/KeyCreationDialog.tsx | 7 ++++--- .../components/KeyPairs/KeyPairsTable.scss | 2 +- src/web/components/KeyPairs/KeyPairsTable.tsx | 20 +++++++------------ src/web/screens/apiKeyManagement.tsx | 7 +++---- src/web/screens/clientSideIntegration.tsx | 5 ++--- 5 files changed, 17 insertions(+), 24 deletions(-) diff --git a/src/web/components/ApiKeyManagement/KeyCreationDialog.tsx b/src/web/components/ApiKeyManagement/KeyCreationDialog.tsx index 849bcd65d..ee7d3eddd 100644 --- a/src/web/components/ApiKeyManagement/KeyCreationDialog.tsx +++ b/src/web/components/ApiKeyManagement/KeyCreationDialog.tsx @@ -99,9 +99,10 @@ function ShowApiKeySecrets({ keySecrets, closeDialog }: ApiKeySecretsProps) {

API Key {keySecrets.name} Credentials

- Copy the key and secret, store them in a secure location, and do not share them. When you - close the window, these values are not saved and are no longer available to you. If they are - lost, you'll need to create a new key. + Copy the key and secret.{' '} + You must store them in a secure location, and do not share them. When you close the + window, these values are not saved and are no longer available to you. If they are lost, + you'll need to create a new key.

{secrets.map((secret) => (
diff --git a/src/web/components/KeyPairs/KeyPairsTable.scss b/src/web/components/KeyPairs/KeyPairsTable.scss index 0b7062bb8..3eaf58398 100644 --- a/src/web/components/KeyPairs/KeyPairsTable.scss +++ b/src/web/components/KeyPairs/KeyPairsTable.scss @@ -41,7 +41,7 @@ .key-pair-header { display: flex; - gap: 5px; + gap: 10px; .key-pair-tool-tip { margin-top: 0.4rem; diff --git a/src/web/components/KeyPairs/KeyPairsTable.tsx b/src/web/components/KeyPairs/KeyPairsTable.tsx index e7e210fcd..1fd961389 100644 --- a/src/web/components/KeyPairs/KeyPairsTable.tsx +++ b/src/web/components/KeyPairs/KeyPairsTable.tsx @@ -70,22 +70,16 @@ function KeyPairsTableContent({ className='name' sortKey='name' header='Name' /> - - className='subscription-id' - sortKey='subscriptionId' - header={ -
- - Identifies your site to the UID2 service. Can be shared publicly. - - Subscription ID -
- } - />
- Used for encryption. Can be shared publicly. + Subscription ID + Identifies your site to the UID2 service. Can be shared publicly. +
+ + +
Public Key + Used for encryption. Can be shared publicly.
diff --git a/src/web/screens/apiKeyManagement.tsx b/src/web/screens/apiKeyManagement.tsx index 12a75b8b7..7728e2c90 100644 --- a/src/web/screens/apiKeyManagement.tsx +++ b/src/web/screens/apiKeyManagement.tsx @@ -79,7 +79,8 @@ function ApiKeyManagement() { <>

API Keys

- View and manage your API keys. For more information, see{' '} + View and manage your API keys for client-server or server-side integrations. For more + information, see{' '}