Skip to content

Commit d9775db

Browse files
authored
fix(platform): Wrap auth token code snippets (#12930)
1 parent 23623b2 commit d9775db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/codeKeywords/orgAuthTokenCreator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export function OrgAuthTokenCreator() {
111111
}
112112

113113
if (tokenState.status === 'success') {
114-
return <Fragment>{tokenState.token}</Fragment>;
114+
return <span className="whitespace-pre-wrap break-all">{tokenState.token}</span>;
115115
}
116116

117117
if (tokenState.status === 'error') {

0 commit comments

Comments
 (0)