Skip to content

Commit f5072d8

Browse files
committed
Rename "Secret Key" to "Webhook Secret" for consistency (#7102)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Style** - Updated labels and tooltips to use "Webhook Secret" instead of "Secret Key" for improved clarity in the webhook creation interface. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent e7f7a32 commit f5072d8

File tree

1 file changed

+3
-3
lines changed
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/connect/universal-bridge/webhooks/components

1 file changed

+3
-3
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/connect/universal-bridge/webhooks/components/webhooks.client.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,14 +273,14 @@ function CreateWebhookButton(props: PropsWithChildren<PayWebhooksPageProps>) {
273273
/>
274274

275275
<section>
276-
<FormLabel>Secret Key</FormLabel>
276+
<FormLabel>Webhook Secret</FormLabel>
277277

278278
<CopyTextButton
279279
textToCopy={secret}
280280
className="!h-auto my-1 w-full justify-between truncate bg-card px-3 py-3 font-mono"
281281
textToShow={shortenString(secret)}
282282
copyIconPosition="right"
283-
tooltip="Copy Secret Key"
283+
tooltip="Copy Webhook Secret"
284284
/>
285285
<FormDescription>
286286
Passed as a bearer token in all webhook requests to verify the
@@ -293,7 +293,7 @@ function CreateWebhookButton(props: PropsWithChildren<PayWebhooksPageProps>) {
293293
setSecretStored(!!v);
294294
}}
295295
/>
296-
I confirm that I've securely stored my secret key
296+
I confirm that I've securely stored my webhook secret
297297
</CheckboxWithLabel>
298298
</section>
299299

0 commit comments

Comments
 (0)