Skip to content

Commit

Permalink
fix: d.ts type 확장자 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nim-od committed Aug 15, 2024
1 parent f59ef9b commit 3d44cd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion packages/user/src/hooks/socket/useChatSocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<typeof useChatSocket>;

Expand Down

0 comments on commit 3d44cd4

Please sign in to comment.