refactor(hooks): move useScreenSize hook to the correct directory and update import paths

This commit is contained in:
Ralex
2025-10-26 10:56:48 +01:00
parent 74707749aa
commit ba29466c69
3 changed files with 2 additions and 4 deletions

View File

@@ -1,11 +1,9 @@
import { Quizz } from "@rahoot/common/types/game"
import { QuizzWithId } from "@rahoot/common/types/game"
import Button from "@rahoot/web/components/Button"
import clsx from "clsx"
import { useState } from "react"
import toast from "react-hot-toast"
type QuizzWithId = Quizz & { id: string }
type Props = {
quizzList: QuizzWithId[]
onSelect: (_id: string) => void

View File

@@ -1,7 +1,7 @@
"use client"
import { ManagerStatusDataMap } from "@rahoot/common/types/game/status"
import useScreenSize from "@rahoot/web/hook/useScreenSize"
import useScreenSize from "@rahoot/web/hooks/useScreenSize"
import {
SFX_PODIUM_FIRST,
SFX_PODIUM_SECOND,