Skip to content

Commit

Permalink
fix: added space type
Browse files Browse the repository at this point in the history
  • Loading branch information
amar-1995 committed May 23, 2024
1 parent 79722c7 commit 1a5c984
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ export const CaptionContent = ({ isMobile, onExit }: { isMobile: boolean; onExit
</Text>
{!isMobile ? (
<Text variant="sm" css={{ color: '$on_surface_medium', pb: '$6', mb: '$8', '@md': { px: '$8', mt: '$4' } }}>
This will {isTranscriptionEnabled ? 'disable' : 'enable'} Closed Captions for everyone in this room. You can
This will {isTranscriptionEnabled ? 'disable' : 'enable'} Closed Captions for everyone in this room. You
can&nbsp;
{isTranscriptionEnabled ? 'enable' : 'disable'} it later.
</Text>
) : null}
Expand Down Expand Up @@ -123,7 +124,8 @@ export const CaptionContent = ({ isMobile, onExit }: { isMobile: boolean; onExit
</Flex>
{isMobile && (
<Text variant="sm" css={{ color: '$on_surface_medium', pb: '$6', mb: '$8', '@md': { px: '$8', mt: '$4' } }}>
This will {isTranscriptionEnabled ? 'disable' : 'enable'} Closed Captions for everyone in this room. You can
This will {isTranscriptionEnabled ? 'disable' : 'enable'} Closed Captions for everyone in this room. You
can&nbsp;
{isTranscriptionEnabled ? 'enable' : 'disable'} it later.
</Text>
)}
Expand Down

0 comments on commit 1a5c984

Please sign in to comment.