diff options
| -rw-r--r-- | server/shared.ts | 2 | ||||
| -rw-r--r-- | src/components/Game/index.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/shared.ts b/server/shared.ts index 8b4afc4..214d5ad 100644 --- a/server/shared.ts +++ b/server/shared.ts @@ -1,6 +1,6 @@ import { createHash, createHmac, timingSafeEqual } from "crypto"; import { songs } from "./data/songs"; -import { musicVideos } from "./data/mvs"; +import { songs as musicVideos } from "./data/mvs"; const DAILY_START_DATE = "2026-06-01T00:00:00Z"; const DAILY_START_MS = Date.parse(DAILY_START_DATE); diff --git a/src/components/Game/index.tsx b/src/components/Game/index.tsx index 85c4e95..9d0fa4b 100644 --- a/src/components/Game/index.tsx +++ b/src/components/Game/index.tsx @@ -3,7 +3,7 @@ import React from "react"; import { GuessType } from "../../types/guess"; import { Song } from "../../types/song"; import { playTimes } from "../../constants"; -import { musicVideos } from "../../../server/data/mvs"; +import { songs as musicVideos } from "../../../server/data/mvs"; import { Button, Guess, YTPlayer, Search, Result, Player, MVPlayer } from "../"; |
