Skip to content

Commit

Permalink
fix: Modify import because of changed types
Browse files Browse the repository at this point in the history
  • Loading branch information
rhino-ty committed Nov 20, 2024
1 parent e28c7d3 commit e6b1f0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/ui/UserInfoCard.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { cva, type VariantProps } from 'class-variance-authority';
import profilePlaceholder from '@/assets/profile-placeholder.png';
import { PlayerRole, PlayerStatus } from '@/types/game.types';
import { PlayerRole, PlayerStatus } from '@/types/gameShared.types';
import { cn } from '@/utils/cn';
import getCrownImage from '@/utils/getCrownImage';

Expand Down
2 changes: 1 addition & 1 deletion client/src/utils/getDrawPoint.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TouchEvent as ReactTouchEvent, MouseEvent as ReactMouseEvent } from 'react';
import { Point } from '@/types/canvas.types';
import { Point } from '@/types/drawingShared.types';

/**
* TouchEvent에서 첫 번째 터치 좌표를 가져오는 Util 함수입니다.
Expand Down

0 comments on commit e6b1f0e

Please sign in to comment.