resolve ts errors

This commit is contained in:
cirroskais 2024-09-04 00:41:59 -04:00
parent e8de40b277
commit b96a310444
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
<script>
import { scale } from "svelte/transition";
import { Map, Gamepad2 } from "lucide-svelte";
import { staff } from "./config";
import { staff } from "./config.json";
import { gameDetails, downloadingFile, statusChanged } from "./lib/events";
import Slideshow from "./lib/Slideshow.svelte";
import User from "./lib/User.svelte";

View file

@ -1,6 +1,6 @@
<script>
import { fade, slide } from "svelte/transition";
import { images, imageDuration } from "../config";
import { fade } from "svelte/transition";
import { images, imageDuration } from "../config.json";
let index = Math.floor(Math.random() * images.length),
selected = images[index];