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", ); 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 { 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, ); }