🐛 User preferences not rendering correctly for Switches
This commit is contained in:
@@ -13,13 +13,13 @@ export const AccessibilitySettings = () => {
|
|||||||
<Switch
|
<Switch
|
||||||
label={t('disablePulse.label')}
|
label={t('disablePulse.label')}
|
||||||
description={t('disablePulse.description')}
|
description={t('disablePulse.description')}
|
||||||
{...form.getInputProps('disablePingPulse')}
|
{...form.getInputProps('disablePingPulse', { type: 'checkbox' })}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Switch
|
<Switch
|
||||||
label={t('replaceIconsWithDots.label')}
|
label={t('replaceIconsWithDots.label')}
|
||||||
description={t('replaceIconsWithDots.description')}
|
description={t('replaceIconsWithDots.description')}
|
||||||
{...form.getInputProps('replaceDotsWithIcons')}
|
{...form.getInputProps('replaceDotsWithIcons', { type: 'checkbox' })}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Alert icon={<IconInfoCircle size="1rem" />} color="blue">
|
<Alert icon={<IconInfoCircle size="1rem" />} color="blue">
|
||||||
|
|||||||
Reference in New Issue
Block a user