diff --git a/AppImage/components/settings.tsx b/AppImage/components/settings.tsx index 4f6a50be..287b9196 100644 --- a/AppImage/components/settings.tsx +++ b/AppImage/components/settings.tsx @@ -601,8 +601,8 @@ export function Settings() { Alerts - {/* Storage rows */} -
+ {/* Storage rows - scrollable container */} +
{remoteStorages.map((storage) => { const isExcluded = storage.exclude_health || storage.exclude_notifications const isSaving = savingStorage === storage.name @@ -641,6 +641,7 @@ export function Settings() { storage.exclude_notifications ) }} + className="data-[state=checked]:bg-blue-600 data-[state=unchecked]:bg-input border border-border" /> )}
@@ -659,6 +660,7 @@ export function Settings() { !checked ) }} + className="data-[state=checked]:bg-blue-600 data-[state=unchecked]:bg-input border border-border" /> )}
@@ -712,8 +714,8 @@ export function Settings() { Alerts - {/* Interface rows */} -
+ {/* Interface rows - scrollable container */} +
{networkInterfaces.map((iface) => { const isExcluded = iface.exclude_health || iface.exclude_notifications const isSaving = savingInterface === iface.name @@ -765,6 +767,7 @@ export function Settings() { iface.exclude_notifications ) }} + className="data-[state=checked]:bg-blue-600 data-[state=unchecked]:bg-input border border-border" /> )}
@@ -784,6 +787,7 @@ export function Settings() { !checked ) }} + className="data-[state=checked]:bg-blue-600 data-[state=unchecked]:bg-input border border-border" /> )}