diff --git a/src/hooks/api/authenticated-query.ts b/src/hooks/api/authenticated-query.ts
index 66aeb6791..194482360 100644
--- a/src/hooks/api/authenticated-query.ts
+++ b/src/hooks/api/authenticated-query.ts
@@ -7,10 +7,12 @@ import { Cookies } from 'react-cookie';
import {
MutationFunction,
QueryClient,
+ useMutation,
+ useQueries,
+ useQuery,
useQueryClient,
UseQueryResult,
} from 'react-query';
-import { useMutation, useQueries, useQuery } from 'react-query';
import { useCookiesWithOptions } from '@/hooks/useCookiesWithOptions';
import type { CalendarSummaryFormat } from '@/utils/createEmbededCalendarSummaries';
diff --git a/src/hooks/api/user.ts b/src/hooks/api/user.ts
index 0713382cf..ead2c360c 100644
--- a/src/hooks/api/user.ts
+++ b/src/hooks/api/user.ts
@@ -1,5 +1,4 @@
import jwt_decode from 'jwt-decode';
-import getConfig from 'next/config';
import { FetchError, fetchFromApi, isErrorObject } from '@/utils/fetchFromApi';
diff --git a/src/pages/PictureUploadBox.tsx b/src/pages/PictureUploadBox.tsx
index 804dd268b..9832989ed 100644
--- a/src/pages/PictureUploadBox.tsx
+++ b/src/pages/PictureUploadBox.tsx
@@ -1,6 +1,5 @@
import { DragEvent } from 'react';
import { useTranslation } from 'react-i18next';
-import { css } from 'styled-components';
import { Scope, ScopeTypes } from '@/constants/OfferType';
import { Button, ButtonVariants } from '@/ui/Button';
diff --git a/src/pages/VideoUploadBox.tsx b/src/pages/VideoUploadBox.tsx
index f0db0b337..b6d4fcf93 100644
--- a/src/pages/VideoUploadBox.tsx
+++ b/src/pages/VideoUploadBox.tsx
@@ -1,5 +1,4 @@
import { useTranslation } from 'react-i18next';
-import { css } from 'styled-components';
import { Button, ButtonVariants } from '@/ui/Button';
import { Icons } from '@/ui/Icon';
diff --git a/src/pages/api/auth/[...auth0].api.ts b/src/pages/api/auth/[...auth0].api.ts
index 2df9fd603..badcb5a8c 100644
--- a/src/pages/api/auth/[...auth0].api.ts
+++ b/src/pages/api/auth/[...auth0].api.ts
@@ -1,5 +1,4 @@
import { handleAuth, handleLogin, handleLogout } from '@auth0/nextjs-auth0';
-import { serialize } from 'cookie';
import { NextApiRequest } from 'next';
import getConfig from 'next/config';
diff --git a/src/pages/create/OfferForm.tsx b/src/pages/create/OfferForm.tsx
index eec03c5c6..7600cfbe9 100644
--- a/src/pages/create/OfferForm.tsx
+++ b/src/pages/create/OfferForm.tsx
@@ -24,15 +24,9 @@ import { Address, AddressInternal } from '@/types/Address';
import { ContactPoint } from '@/types/ContactPoint';
import { Country } from '@/types/Country';
import { AttendanceMode, AudienceType, isEvent } from '@/types/Event';
-import {
- BookingInfo,
- Label,
- MediaObject,
- Offer,
- PriceInfo,
-} from '@/types/Offer';
+import { BookingInfo, MediaObject, Offer, PriceInfo } from '@/types/Offer';
import { Organizer } from '@/types/Organizer';
-import { isPlace, Place } from '@/types/Place';
+import { Place } from '@/types/Place';
import { Values } from '@/types/Values';
import { WorkflowStatus } from '@/types/WorkflowStatus';
import { getLanguageObjectOrFallback } from '@/utils/getLanguageObjectOrFallback';
diff --git a/src/pages/login/[language].page.tsx b/src/pages/login/[language].page.tsx
index c4eb82731..1cc32ab4e 100644
--- a/src/pages/login/[language].page.tsx
+++ b/src/pages/login/[language].page.tsx
@@ -33,10 +33,10 @@ const Path = (props) => ;
const Animation = (props) => {
const draw = keyframes`
- to {
- stroke-dashoffset: 0;
- }
- `;
+ to {
+ stroke-dashoffset: 0;
+ }
+ `;
const drawAnimationLineLeft = css`
${draw} 2s 0.2s forwards linear;
@@ -47,32 +47,32 @@ const Animation = (props) => {
`;
const logoAnimate = keyframes`
- 0% {
- transform: scale(1);
- animation-timing-function: cubic-bezier(0.3, 0.1, 0.9, 0.5);
- }
- 10% {
- transform: scale(0.8);
- animation-timing-function: cubic-bezier(0.1, 0.4, 0.2, 1);
- }
- 100% {
- transform: scale(1);
- }
- `;
+ 0% {
+ transform: scale(1);
+ animation-timing-function: cubic-bezier(0.3, 0.1, 0.9, 0.5);
+ }
+ 10% {
+ transform: scale(0.8);
+ animation-timing-function: cubic-bezier(0.1, 0.4, 0.2, 1);
+ }
+ 100% {
+ transform: scale(1);
+ }
+ `;
const publicAnimate = keyframes`
- 0% {
- transform: scale(1);
- animation-timing-function: cubic-bezier(0.3, 0.1, 0.9, 0.5);
- }
- 10% {
- transform: scale(0.8);
- animation-timing-function: cubic-bezier(0.1, 0.4, 0.2, 1);
- }
- 100% {
- transform: scale(1);
- }
- `;
+ 0% {
+ transform: scale(1);
+ animation-timing-function: cubic-bezier(0.3, 0.1, 0.9, 0.5);
+ }
+ 10% {
+ transform: scale(0.8);
+ animation-timing-function: cubic-bezier(0.1, 0.4, 0.2, 1);
+ }
+ 100% {
+ transform: scale(1);
+ }
+ `;
return (