Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function NotificationList(props: ReturnType<typeof useNotifications>) {
: // 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",
);

Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/@/hooks/useLocalStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function useLocalStorage<TType>(
) {
const [value, _setValue] = useState<TType>(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 {
Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/src/@/storybook/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
}

Expand Down