Skip to content

Commit

Permalink
[fix]any타입제거 및 빌드오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chaduhwan committed Apr 6, 2024
1 parent 80e2813 commit 3b838cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/(route)/onboard/_components/WatchWord.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useEffect, useRef } from 'react'
import styles from '../Onboard.module.css'

function WatchWord({ handleView }: { handleView: any }) {
function WatchWord({ handleView }: { handleView: (params: boolean) => void }) {
const animationRef = useRef<HTMLDivElement>(null)

useEffect(() => {
Expand Down

0 comments on commit 3b838cb

Please sign in to comment.