Group topics: add padding below form

group-hashtags
Alex Gleason 2023-03-27 13:32:14 -05:00
rodzic 1efcd95a76
commit 36c5fcc469
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 11 dodań i 9 usunięć

Wyświetl plik

@ -189,15 +189,17 @@ const DetailsStep = () => {
/>
</FormGroup>
<Streamfield
label='Topics'
hint='Add up to 3 keywords that will serve as core topics of discussion in the group.'
component={HashtagField}
values={hashtags}
onChange={setHashtags}
onAddItem={handleAddHashtag}
onRemoveItem={handleRemoveHashtag}
/>
<div className='pb-6'>
<Streamfield
label='Topics'
hint='Add up to 3 keywords that will serve as core topics of discussion in the group.'
component={HashtagField}
values={hashtags}
onChange={setHashtags}
onAddItem={handleAddHashtag}
onRemoveItem={handleRemoveHashtag}
/>
</div>
</Form>
);
};