From 3d44cd4fe040742d5f774a239b98b7a3775adb9f Mon Sep 17 00:00:00 2001 From: nimod7890 Date: Thu, 15 Aug 2024 13:13:52 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20d.ts=20type=20=ED=99=95=EC=9E=A5?= =?UTF-8?q?=EC=9E=90=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/user/src/components/event/racing/dashboard/Casper.tsx | 2 +- packages/user/src/hooks/socket/useChatSocket.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;