From f14075cad1925c556a6b67bcd2488169271274d1 Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Fri, 9 Aug 2024 19:37:05 -0500 Subject: [PATCH] fix TS error --- .dist/login.js | 2 +- webpage/login.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.dist/login.js b/.dist/login.js index 8d01ef4..f0f1555 100644 --- a/.dist/login.js +++ b/.dist/login.js @@ -1,4 +1,4 @@ -import { Fullscreen } from "/fullscreen.js"; +import { Fullscreen } from "./fullscreen.js"; const mobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent); export { mobile, getBulkUsers, getBulkInfo, setTheme, Specialuser }; function setTheme() { diff --git a/webpage/login.ts b/webpage/login.ts index 4311a73..cba28f6 100644 --- a/webpage/login.ts +++ b/webpage/login.ts @@ -1,4 +1,4 @@ -import { Fullscreen } from "/fullscreen.js"; +import { Fullscreen } from "./fullscreen.js"; const mobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent); export {mobile, getBulkUsers,getBulkInfo,setTheme,Specialuser}