}>
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/src/common/api/useGetSettings.ts b/src/common/api/useGetSettings.ts
index b3a48d1..f0cecf8 100644
--- a/src/common/api/useGetSettings.ts
+++ b/src/common/api/useGetSettings.ts
@@ -1,4 +1,5 @@
import { useQuery } from '@tanstack/react-query';
+import { ThemeValue } from 'common/components/Theme/Theme';
import { DEFAULT_SETTINGS, QueryKey, StorageKey } from 'common/utils/constants';
import storage from 'common/utils/storage';
@@ -9,7 +10,7 @@ import storage from 'common/utils/storage';
* @param [updatedAt] - Optional. The timestamp the settings were last updated.
*/
export interface Settings {
- theme: 'light' | 'dark';
+ theme: ThemeValue;
updatedAt?: string;
}
diff --git a/src/common/components/Breadcrumbs/Breadcrumbs.tsx b/src/common/components/Breadcrumbs/Breadcrumbs.tsx
index abfbf73..0cfff0b 100644
--- a/src/common/components/Breadcrumbs/Breadcrumbs.tsx
+++ b/src/common/components/Breadcrumbs/Breadcrumbs.tsx
@@ -95,11 +95,7 @@ Breadcrumbs.Item = Item;
*/
const Link = ({ children, className, testId = 'breadcrumbs-link', ...props }: CommonLinkProps) => {
return (
-
+
{children}
);
diff --git a/src/common/components/Button/ThemeToggle.tsx b/src/common/components/Button/ThemeToggle.tsx
index 48692b6..39220e3 100644
--- a/src/common/components/Button/ThemeToggle.tsx
+++ b/src/common/components/Button/ThemeToggle.tsx
@@ -26,7 +26,7 @@ const ThemeToggle = ({ className }: ThemeToggleProps) => {