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} -

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