Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vhande committed Nov 22, 2024
1 parent bff49bc commit 5dba2ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hooks/api/organizers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import {
import type { Organizer } from '@/types/Organizer';
import { createSortingArgument } from '@/utils/createSortingArgument';
import { fetchFromApi, isErrorObject } from '@/utils/fetchFromApi';
import { handleErrorObject } from '@/utils/handleErrorObject';

import type { Headers } from './types/Headers';
import type { User } from './user';
import { handleErrorObject } from '@/utils/handleErrorObject';

type HeadersAndQueryData = {
headers: Headers;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/organizers/[organizerId]/preview/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ import { Box } from '@/ui/Box';
import { Button, ButtonVariants } from '@/ui/Button';
import { Icons } from '@/ui/Icon';
import { Inline } from '@/ui/Inline';
import { Link, LinkButtonVariants } from '@/ui/Link';
import { Modal, ModalSizes, ModalVariants } from '@/ui/Modal';
import { Page } from '@/ui/Page';
import { Stack } from '@/ui/Stack';
import { getApplicationServerSideProps } from '@/utils/getApplicationServerSideProps';
import { getLanguageObjectOrFallback } from '@/utils/getLanguageObjectOrFallback';

import { OrganizerTable } from './OrganizerTable';
import { Link, LinkButtonVariants } from '@/ui/Link';

const OrganizersPreview = () => {
const { t, i18n } = useTranslation();
Expand Down

0 comments on commit 5dba2ce

Please sign in to comment.