From a793847b9128ca1f75dd1d716c7a3fe6255f564e Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 16 Nov 2023 09:53:04 +0000 Subject: [PATCH] fix(overlay): fix imports --- src/app/overlay/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/overlay/page.tsx b/src/app/overlay/page.tsx index 09b085d..d534867 100644 --- a/src/app/overlay/page.tsx +++ b/src/app/overlay/page.tsx @@ -4,8 +4,8 @@ import Spinner from "@/components/Spinner"; import PlayerStats from "@/components/overlay/PlayerStats"; import ScoreStats from "@/components/overlay/ScoreStats"; import SongInfo from "@/components/overlay/SongInfo"; -import { HttpSiraStatus } from "@/overlay/httpSiraStatus"; -import { OverlayPlayer } from "@/overlay/type/overlayPlayer"; +import { HttpSiraStatus } from "@/lib/overlay/httpSiraStatus"; +import { OverlayPlayer } from "@/lib/overlay/type/overlayPlayer"; import { BeatLeaderAPI } from "@/utils/beatleader/api"; import { ScoreSaberAPI } from "@/utils/scoresaber/api"; import { Component } from "react";