change(ui): module issue, project dropdown feedback, other fixes

This commit is contained in:
Shekar Siri 2023-08-09 18:09:08 +05:30
parent 3c6f7e00ba
commit a2186e12cd

View file

@ -22,7 +22,7 @@ function ModuleCard(props: Props) {
<p className='flex-grow'>{module.description}</p>
</div>
<div className='flex items-end'>
<Switch size='small' checked={module.isEnabled} title={module.isEnabled ? 'A' : 'B'}
<Switch size='small' checked={!module.isEnabled} title={module.isEnabled ? 'A' : 'B'}
onChange={() => props.onToggle(module)} />
</div>
</div>