Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
illusionTBA committed Nov 18, 2024
1 parent eb76b6b commit 4022079
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/hooks/useRuffle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const useRuffle = (
scale: "showAll",
quality: "high",
};
window.addEventListener("load", (event) => {
window.addEventListener("load", (_event) => {
const ruffle = window.RufflePlayer.newest();
const player = ruffle.createPlayer();
Rufflecontainer.current.appendChild(player);
Expand Down
2 changes: 0 additions & 2 deletions src/routes/games.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import * as React from "react";
import { createFileRoute, Link } from "@tanstack/react-router";
import GridPattern from "@/components/ui/grid-pattern";
import { cn } from "@/lib/utils";
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
Expand Down
2 changes: 1 addition & 1 deletion src/routes/play.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createFileRoute, Link } from "@tanstack/react-router";
import GridPattern from "@/components/ui/grid-pattern";
import { cn } from "@/lib/utils";
import { Home, FullscreenIcon, Gamepad } from "lucide-react";
import { useEffect, useRef } from "react";
import { useRef } from "react";
import useRuffle from "@/components/hooks/useRuffle";
type GameSearch = {
title: string;
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.app.tsbuildinfo
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"root":["./src/main.tsx","./src/routeTree.gen.ts","./src/store.ts","./src/vite-env.d.ts","./src/components/xor.ts","./src/components/hooks/useSw.tsx","./src/components/ui/button.tsx","./src/components/ui/dialog.tsx","./src/components/ui/dock.tsx","./src/components/ui/dropdown-menu.tsx","./src/components/ui/gradual-spacing.tsx","./src/components/ui/grid-pattern.tsx","./src/components/ui/input.tsx","./src/components/ui/letter-pullup.tsx","./src/components/ui/select.tsx","./src/components/ui/separator.tsx","./src/lib/utils.ts","./src/routes/__root.tsx","./src/routes/chat.lazy.tsx","./src/routes/index.lazy.tsx"],"version":"5.6.3"}
{"root":["./src/main.tsx","./src/routeTree.gen.ts","./src/store.ts","./src/vite-env.d.ts","./src/components/xor.ts","./src/components/hooks/useRuffle.tsx","./src/components/hooks/useScript.tsx","./src/components/hooks/useSw.tsx","./src/components/ui/button.tsx","./src/components/ui/card.tsx","./src/components/ui/dialog.tsx","./src/components/ui/dock.tsx","./src/components/ui/dropdown-menu.tsx","./src/components/ui/gradual-spacing.tsx","./src/components/ui/grid-pattern.tsx","./src/components/ui/input.tsx","./src/components/ui/letter-pullup.tsx","./src/components/ui/select.tsx","./src/components/ui/separator.tsx","./src/lib/utils.ts","./src/routes/__root.tsx","./src/routes/chat.lazy.tsx","./src/routes/games.tsx","./src/routes/index.tsx","./src/routes/play.tsx"],"version":"5.6.3"}

0 comments on commit 4022079

Please sign in to comment.