From 0ad1a2e3fe210ec479380e9b87ffdb4340b000a5 Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Thu, 24 Oct 2024 19:32:04 -0300
Subject: [PATCH] fix: shortcut and animation on home
---
src/main/events/library/create-game-shortcut.ts | 1 +
src/renderer/src/pages/home/home.tsx | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/main/events/library/create-game-shortcut.ts b/src/main/events/library/create-game-shortcut.ts
index a27317f0..4e6935f4 100644
--- a/src/main/events/library/create-game-shortcut.ts
+++ b/src/main/events/library/create-game-shortcut.ts
@@ -24,6 +24,7 @@ const createGameShortcut = async (
const options = {
filePath,
name: removeSymbolsFromName(game.title),
+ outputPath: app.getPath("desktop"),
};
return createDesktopShortcut({
diff --git a/src/renderer/src/pages/home/home.tsx b/src/renderer/src/pages/home/home.tsx
index 61417b1f..9fc4a5cd 100644
--- a/src/renderer/src/pages/home/home.tsx
+++ b/src/renderer/src/pages/home/home.tsx
@@ -126,7 +126,7 @@ export default function Home() {