Skip to content

Commit

Permalink
use markdown for default
Browse files Browse the repository at this point in the history
  • Loading branch information
narefyev91 committed Mar 19, 2024
1 parent 30739ac commit 2640d95
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/pages/workspace/WorkspaceProfileDescriptionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ function WorkspaceProfileDescriptionPage({policy}: Props) {
// policy?.description can be an empty string
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
policy?.description ||
translate('workspace.common.welcomeNote', {
workspaceName: policy?.name ?? '',
}),
parser.replace(
translate('workspace.common.welcomeNote', {
workspaceName: policy?.name ?? '',
}),
),
),
);

Expand Down

0 comments on commit 2640d95

Please sign in to comment.