Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Oct 10, 2023
1 parent 60db825 commit b385179
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/hooks/api/organizers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,12 +305,12 @@ const useChangeLocationMutation = (configuration = {}) =>
});

export {
useChangeLocationMutation,
useCreateOrganizerMutation,
useDeleteOrganizerByIdMutation,
useGetOrganizerByIdQuery,
useGetOrganizersByCreatorQuery,
useGetOrganizersByQueryQuery,
useGetOrganizersByWebsiteQuery,
useUpdateOrganizerMutation,
useChangeLocationMutation,
};
8 changes: 4 additions & 4 deletions src/pages/organizers/create/OrganizerForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ import { locationStepConfiguration } from '@/pages/steps/LocationStep';
import { Steps, StepsConfiguration } from '@/pages/steps/Steps';
import { Organizer } from '@/types/Organizer';
import { Button, ButtonVariants } from '@/ui/Button';
import { Page } from '@/ui/Page';
import { getLanguageObjectOrFallback } from '@/utils/getLanguageObjectOrFallback';

import { NameAndUrlStep } from './steps/NameAndUrlStep';
import { Inline } from '@/ui/Inline';
import { Link, LinkVariants } from '@/ui/Link';
import { Page } from '@/ui/Page';
import { Text } from '@/ui/Text';
import { getValueFromTheme } from '@/ui/theme';
import { getLanguageObjectOrFallback } from '@/utils/getLanguageObjectOrFallback';

import { NameAndUrlStep } from './steps/NameAndUrlStep';

const typeAndThemeStepConfiguration: StepsConfiguration<'nameAndUrl'> = {
Component: NameAndUrlStep,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React, { useEffect } from 'react';
import { useTranslation } from 'react-i18next';

import { useChangeLocationMutation } from '@/hooks/api/organizers';
import {
TabContentProps,
ValidationStatus,
} from '@/pages/steps/AdditionalInformationStep/AdditionalInformationStep';
import { isLocationSet, LocationStep } from '@/pages/steps/LocationStep';
import { StepProps } from '@/pages/steps/Steps';
import { StackProps } from '@/ui/Stack';
import { useChangeLocationMutation } from '@/hooks/api/organizers';
import { useTranslation } from 'react-i18next';

type PhysicalLocationStepProps = StackProps & TabContentProps & StepProps;

Expand Down

0 comments on commit b385179

Please sign in to comment.