diff --git a/frontend/index.html b/frontend/index.html index 7af3f2a..2365a19 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,11 +4,17 @@ - + Leggen - + @@ -21,8 +27,16 @@ - - + + diff --git a/frontend/src/components/AccountSettings.tsx b/frontend/src/components/AccountSettings.tsx index fd35941..a367efb 100644 --- a/frontend/src/components/AccountSettings.tsx +++ b/frontend/src/components/AccountSettings.tsx @@ -144,7 +144,8 @@ export default function AccountSettings() { Account Management - Manage your connected bank accounts and customize their display names + Manage your connected bank accounts and customize their display + names @@ -324,7 +325,8 @@ export default function AccountSettings() { Add New Bank Account - Connect additional bank accounts to track all your finances in one place + Connect additional bank accounts to track all your finances in one + place @@ -332,7 +334,8 @@ export default function AccountSettings() {

- Bank connection functionality is coming soon. Stay tuned for updates! + Bank connection functionality is coming soon. Stay tuned for + updates!

@@ -511,7 +527,9 @@ export default function Settings() { Notification Services - Manage your notification services + + Manage your notification services + {!services || services.length === 0 ? ( @@ -521,7 +539,8 @@ export default function Settings() { No notification services configured

- Configure notification services in your backend to receive alerts. + Configure notification services in your backend to receive + alerts.

) : ( @@ -537,7 +556,9 @@ export default function Settings() {
{service.name.toLowerCase().includes("discord") ? ( - ) : service.name.toLowerCase().includes("telegram") ? ( + ) : service.name + .toLowerCase() + .includes("telegram") ? ( ) : ( @@ -612,8 +633,11 @@ export default function Settings() { Case Insensitive Filters

- {notificationSettings.filters.case_insensitive.length > 0 - ? notificationSettings.filters.case_insensitive.join(", ") + {notificationSettings.filters.case_insensitive + .length > 0 + ? notificationSettings.filters.case_insensitive.join( + ", ", + ) : "None"}

@@ -623,8 +647,11 @@ export default function Settings() {

{notificationSettings.filters.case_sensitive && - notificationSettings.filters.case_sensitive.length > 0 - ? notificationSettings.filters.case_sensitive.join(", ") + notificationSettings.filters.case_sensitive.length > + 0 + ? notificationSettings.filters.case_sensitive.join( + ", ", + ) : "None"}

@@ -634,8 +661,8 @@ export default function Settings() {

- Configure notification settings through your backend API to - customize filters and service configurations. + Configure notification settings through your backend API + to customize filters and service configurations.

diff --git a/frontend/src/components/System.tsx b/frontend/src/components/System.tsx index 0ac20f5..d2c6a38 100644 --- a/frontend/src/components/System.tsx +++ b/frontend/src/components/System.tsx @@ -39,7 +39,9 @@ export default function System() {
- Loading system status... + + Loading system status... +
@@ -55,8 +57,8 @@ export default function System() { Failed to load system data

- Unable to connect to the Leggen API. Please check your configuration - and ensure the API server is running. + Unable to connect to the Leggen API. Please check your + configuration and ensure the API server is running.

- ) -}) -SidebarTrigger.displayName = "SidebarTrigger" + ); +}); +SidebarTrigger.displayName = "SidebarTrigger"; const SidebarRail = React.forwardRef< HTMLButtonElement, React.ComponentProps<"button"> >(({ className, ...props }, ref) => { - const { toggleSidebar } = useSidebar() + const { toggleSidebar } = useSidebar(); return (