Skip to content

Commit 10635f6

Browse files
author
Chris
committed
Improve language
1 parent 500d728 commit 10635f6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/app/(connected)/sandbox/token-generated/page.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ export default function ApiKeyGeneratedPage() {
4747

4848
return (
4949
<div>
50-
<h1 className="text-2xl font-bold">API Key Generated</h1>
50+
<h1 className="text-2xl font-bold">Auth Token Generated</h1>
5151
<div>
5252
<p>
53-
Congratulations! You have successfully created a Verida API key. You
54-
can now use it to{" "}
53+
Congratulations! You have successfully created a Verida Auth Token.
54+
You can now use it to{" "}
5555
<Link href="/sandbox/browse-data">Browse your data</Link> or{" "}
5656
<Link href="/sandbox/api-requests">Make API requests</Link>.
5757
</p>
@@ -61,14 +61,14 @@ export default function ApiKeyGeneratedPage() {
6161
<Alert variant="default" className="mb-3">
6262
<AlertTitle>Key saved</AlertTitle>
6363
<AlertDescription>
64-
This API key has been saved to local storage so you can use easily
65-
it with the sandbox
64+
This Auth Token has been saved to local storage so you can use
65+
easily it with the sandbox
6666
</AlertDescription>
6767
</Alert>
6868
)}
6969
{apiKey && !apiKeySaved && (
7070
<Button variant="default" onClick={() => saveApiKey(undefined)}>
71-
Save API Key
71+
Save Auth Token
7272
</Button>
7373
)}
7474
</div>

src/constants/app.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
export const APP_NAME = "Verida: AI Developer Admin"
1+
export const APP_NAME = "Verida: AI Developer Console"
22

3-
export const APP_TITLE = "Verida: AI Developer Admin"
3+
export const APP_TITLE = "Verida: AI Developer Console"
44

5-
export const APP_DESCRIPTION = "Admin interface for Verida AI developers"
5+
export const APP_DESCRIPTION = "Developer Console for Verida AI developers"
66

77
export const VERIDA_APPLICATION_CONTEXT_NAME = "Verida: Vault"

0 commit comments

Comments
 (0)