Skip to content

Commit 4959db7

Browse files
authored
Merge pull request #1166 from data-for-change/fix-text-in-n12
Fix text in n12
2 parents 6b51681 + 926dd0c commit 4959db7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/organisms/TextBox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const TextBox: React.FC<IProps> = ({ isOpen,text,onClose}) => {
7070
<DialogWithHeader fullWidth={false} isShowing={isOpen} onClose={onCloseInitValues} title={t('infografic.transaction')}>
7171
<Box className={classes.root}>
7272
<Box className={classes.text} maxWidth={380}>
73-
<Typography.Body1>
73+
<Typography.Body1 defaultTheme>
7474
{text}
7575
</Typography.Body1>
7676
</Box>
@@ -79,7 +79,7 @@ const TextBox: React.FC<IProps> = ({ isOpen,text,onClose}) => {
7979
<Box>
8080
<img className={classes.copyImg} src={copyToClickBoard?CopyImageGrey:CopyImageWhite} alt="" />
8181
<Box className={classes.copyMessage}>
82-
<Typography.Body2>{copyMessage}</Typography.Body2>
82+
<Typography.Body2 defaultTheme>{copyMessage}</Typography.Body2>
8383
</Box>
8484
</Box>
8585
</AnyWayButton>

0 commit comments

Comments
 (0)