ui: fix modules label

This commit is contained in:
nick-delirium 2025-03-31 11:52:23 +02:00
parent 0a620c6ba3
commit 6412f14b08
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

View file

@ -24,7 +24,7 @@ function ModuleCard(props: Props) {
<Switch
size="small"
checked={!module.isEnabled}
title={module.isEnabled ? 'Enabled' : 'Disabled'}
title={!module.isEnabled ? 'Enabled' : 'Disabled'}
onChange={() => props.onToggle(module)}
/>
</div>