1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-23 19:08:25 +02:00

Fix ts error

This commit is contained in:
Nayam Amarshe 2024-04-24 16:30:16 +05:30
parent 6f8df14ed9
commit 662a09f04f
3 changed files with 1 additions and 6 deletions

View File

@ -1,4 +1,4 @@
import getModelScale from "@common/check-model-scale";
import getModelScale from "../../common/check-model-scale";
import { getPlatform } from "./get-device-specs";
import { ImageFormat } from "../types/types";
const slash: string = getPlatform() === "win" ? "\\" : "/";

View File

@ -1,7 +1,3 @@
import { noImageProcessingAtom } from "@/atoms/userSettingsAtom";
import { useAtomValue } from "jotai";
import React, { useEffect } from "react";
type ImageFormatSelectProps = {
batchMode: boolean;
saveImageAs: string;

View File

@ -10,7 +10,6 @@
"noImplicitAny": false,
"skipLibCheck": true,
"paths": {
"@common/*": ["./common/*"],
"@electron/*": ["./electron/*"],
"@/*": ["./renderer/*"]
}