Support HTML version of note in Group Creation modal
This commit is contained in:
parent
bf7d7f93a5
commit
0f1e7fb2a7
|
@ -54,7 +54,11 @@ const ConfirmationStep: React.FC<IConfirmationStep> = ({ group }) => {
|
||||||
|
|
||||||
<Stack>
|
<Stack>
|
||||||
<Text size='2xl' weight='bold' align='center'>{group.display_name}</Text>
|
<Text size='2xl' weight='bold' align='center'>{group.display_name}</Text>
|
||||||
<Text size='md' className='mx-auto max-w-sm'>{group.note}</Text>
|
<Text
|
||||||
|
size='md'
|
||||||
|
className='mx-auto max-w-sm'
|
||||||
|
dangerouslySetInnerHTML={{ __html: group.note_emojified }}
|
||||||
|
/>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue