From ac71057a3d182942d13e27c7562bd004869e6b93 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Tue, 17 Mar 2026 14:13:39 +0100 Subject: [PATCH] Update notification-settings.tsx --- AppImage/components/notification-settings.tsx | 58 ++++++++++--------- 1 file changed, 30 insertions(+), 28 deletions(-) diff --git a/AppImage/components/notification-settings.tsx b/AppImage/components/notification-settings.tsx index 08a0039e..4a4eafb3 100644 --- a/AppImage/components/notification-settings.tsx +++ b/AppImage/components/notification-settings.tsx @@ -760,6 +760,7 @@ export function NotificationSettings() { } return ( + <>
@@ -1515,34 +1516,35 @@ export function NotificationSettings() { - {/* AI Provider Information Modal */} - - - - AI Providers Information - -
- {AI_PROVIDERS.map(provider => ( -
-
- {provider.label} - {provider.value === "ollama" && ( - Local - )} + {/* AI Provider Information Modal */} + + + + AI Providers Information + +
+ {AI_PROVIDERS.map(provider => ( +
+
+ {provider.label} + {provider.value === "ollama" && ( + Local + )} +
+
+ Default model: {provider.model} +
+

+ {provider.description} +

-
- Default model: {provider.model} -
-

- {provider.description} -

-
- ))} -
- -
+ ))} +
+ + + ) }