taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit b56e05a9674e3562509826b6cd85eae59fda15d6
parent adc9954274ed92693f35e6d339c5912fe813f383
Author: Florian Dold <florian@dold.me>
Date:   Wed, 28 Jan 2026 22:09:57 +0100

spa: be more specific about access token

Diffstat:
Mpackages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx @@ -176,7 +176,7 @@ export function CreatePage({ onCreated, onBack }: Props): VNode { <Input<Entity> name="description" label={i18n.str`Description`} - help={i18n.str`Helps you remember where this token is being used before deleting it.`} + help={i18n.str`Helps you remember where this access token is being used before deleting it.`} /> <InputDuration<Entity> @@ -189,8 +189,8 @@ export function CreatePage({ onCreated, onBack }: Props): VNode { <NotificationCard notification={{ type: "WARN", - message: i18n.str`Refreshable tokens can pose a security risk!`, - description: i18n.str`Refreshable tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.`, + message: i18n.str`Refreshable access tokens can pose a security risk!`, + description: i18n.str`Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.`, }} /> )}