Merge branch 'fix-note-html' into 'develop'
Support HTML version of note in Group Creation modal See merge request soapbox-pub/soapbox!2485
This commit is contained in:
commit
e4d3dae51c
1 changed files with 5 additions and 1 deletions
|
@ -54,7 +54,11 @@ const ConfirmationStep: React.FC<IConfirmationStep> = ({ group }) => {
|
|||
|
||||
<Stack>
|
||||
<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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue