Skip to content

Commit

Permalink
remove disconnected variation
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Sep 18, 2023
1 parent 4ecac07 commit bd2b193
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/meteor/client/views/admin/cloud/RegisterWorkspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ const RegisterWorkspace = () => {
</Box>

<Box pb={8}>
<Box fontSize='h3' fontWeight={700}>
{isWorkspaceRegistered && t('RegisterWorkspace_NotRegistered_Subtitle')}
{!isWorkspaceRegistered && t('RegisterWorkspace_Registered_Description')}
<Box fontScale='h3'>
{!isWorkspaceRegistered && t('RegisterWorkspace_NotRegistered_Subtitle')}
{isWorkspaceRegistered && t('RegisterWorkspace_Registered_Description')}
</Box>
<RegisterWorkspaceCards />
</Box>
Expand Down

0 comments on commit bd2b193

Please sign in to comment.