From 330cb97ca4113d286b04e64c8d97637f1e93098b Mon Sep 17 00:00:00 2001 From: viktorking7 <140458814+viktorking7@users.noreply.github.com> Date: Sun, 21 Sep 2025 11:43:18 +0200 Subject: [PATCH 1/3] Update utils.tsx Signed-off-by: viktorking7 <140458814+viktorking7@users.noreply.github.com> --- apps/dashboard/src/@/storybook/utils.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dashboard/src/@/storybook/utils.tsx b/apps/dashboard/src/@/storybook/utils.tsx index 1ba520c44f6..2a063997b0e 100644 --- a/apps/dashboard/src/@/storybook/utils.tsx +++ b/apps/dashboard/src/@/storybook/utils.tsx @@ -34,11 +34,11 @@ export function mobileViewport( }; } -export function storybookLog(...mesages: unknown[]) { +export function storybookLog(...messages: unknown[]) { console.debug( "%cStorybook", "color: white; background-color: black; padding: 2px 4px; border-radius: 4px;", - ...mesages, + ...messages, ); } From e8af6dcaf56a2f80126c76bfef53f14825dd305c Mon Sep 17 00:00:00 2001 From: viktorking7 <140458814+viktorking7@users.noreply.github.com> Date: Sun, 21 Sep 2025 11:43:42 +0200 Subject: [PATCH 2/3] Update notification-list.tsx Signed-off-by: viktorking7 <140458814+viktorking7@users.noreply.github.com> --- .../src/@/components/notifications/notification-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/@/components/notifications/notification-list.tsx b/apps/dashboard/src/@/components/notifications/notification-list.tsx index c5fe986fe43..8086a101956 100644 --- a/apps/dashboard/src/@/components/notifications/notification-list.tsx +++ b/apps/dashboard/src/@/components/notifications/notification-list.tsx @@ -14,7 +14,7 @@ export function NotificationList(props: ReturnType) { : // if we have archived notifications, default to archive props.archivedNotifications.length > 0 ? "archive" - : // otherwise defualt to inbox (if there are no archived notifications either) + : // otherwise default to inbox (if there are no archived notifications either) "inbox", ); From 420b961a6173775cace52083aab50acb4634db53 Mon Sep 17 00:00:00 2001 From: viktorking7 <140458814+viktorking7@users.noreply.github.com> Date: Sun, 21 Sep 2025 11:44:05 +0200 Subject: [PATCH 3/3] Update useLocalStorage.ts Signed-off-by: viktorking7 <140458814+viktorking7@users.noreply.github.com> --- apps/dashboard/src/@/hooks/useLocalStorage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/@/hooks/useLocalStorage.ts b/apps/dashboard/src/@/hooks/useLocalStorage.ts index 4219805f904..0c002de3295 100644 --- a/apps/dashboard/src/@/hooks/useLocalStorage.ts +++ b/apps/dashboard/src/@/hooks/useLocalStorage.ts @@ -10,7 +10,7 @@ export function useLocalStorage( ) { const [value, _setValue] = useState(serverSideFallback); - // FIXME: ideally we do not need localstorage like this, alernatively we move this into use-query and use-mutation to invalidate etc + // FIXME: ideally we do not need localstorage like this, alternatively we move this into use-query and use-mutation to invalidate etc // eslint-disable-next-line no-restricted-syntax useEffect(() => { try {