Change layout in wallet prompt (#2454)

This commit is contained in:
ekzyis 2025-08-29 19:15:35 +02:00 committed by GitHub
parent e3445a137d
commit cbcb8cb96c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,12 +127,12 @@ function SkipForm ({ onSkip }) {
return (
<Form
initial={{ dontShowAgain: false }}
className='d-flex justify-content-between align-items-center mt-3'
className='d-flex align-items-center mt-3'
onSubmit={onSubmit}
schema={schema}
>
<Checkbox label="don't show again" name='dontShowAgain' groupClassName='mb-0' />
<Button type='submit' variant='secondary' size='sm'>skip</Button>
<Checkbox label="don't show again" name='dontShowAgain' groupClassName='mb-0 ms-3' />
</Form>
)
}