diff --git a/packages/user/src/components/event/racing/dashboard/Casper.tsx b/packages/user/src/components/event/racing/dashboard/Casper.tsx index 6fe3e432..ffab69d2 100644 --- a/packages/user/src/components/event/racing/dashboard/Casper.tsx +++ b/packages/user/src/components/event/racing/dashboard/Casper.tsx @@ -1,7 +1,7 @@ import type { Category } from '@softeer/common/types'; import MarkerIcon from 'src/assets/icons/car-marker.svg?react'; import useAuth from 'src/hooks/useAuth.tsx'; -import type { Rank } from 'src/types/racing.ts'; +import type { Rank } from 'src/types/racing.d.ts'; interface CasperProps { type: Category; diff --git a/packages/user/src/hooks/socket/useChatSocket.ts b/packages/user/src/hooks/socket/useChatSocket.ts index 48fdd0d2..f1a5c821 100644 --- a/packages/user/src/hooks/socket/useChatSocket.ts +++ b/packages/user/src/hooks/socket/useChatSocket.ts @@ -4,7 +4,7 @@ import { SocketSubscribeCallbackType } from '@softeer/common/utils'; import { useState } from 'react'; import useAuth from 'src/hooks/useAuth.tsx'; import socketClient from 'src/services/socket.ts'; -import { User } from 'src/types/user.js'; +import type { User } from 'src/types/user.d.ts'; export type UseChatSocketReturnType = ReturnType;