fix: removing backdrop from online-fix guide

This commit is contained in:
Hydra 2024-05-02 09:47:25 +01:00
commit 2f19094341
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View file

@ -43,7 +43,7 @@ export enum GameStatus {
Cancelled = "cancelled",
}
export const defaultDownloadsPath = path.join(os.homedir(), "downloads");
export const defaultDownloadsPath = app.getPath("downloads");
export const databasePath = path.join(
app.getPath("appData"),

View file

@ -1,5 +1,4 @@
import { Button, CheckboxField, Modal, TextField } from "@renderer/components";
import { Backdrop } from "@renderer/components/backdrop/backdrop";
import { createPortal } from "react-dom";
export function OnlineFixInstallationGuide() {