From c54a04662679147ce27c92464629636d9b78fcf7 Mon Sep 17 00:00:00 2001 From: Saschl Date: Mon, 14 Oct 2024 19:26:56 +0200 Subject: [PATCH] fix lint --- src/renderer/components/AddonSection/MyInstall/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/renderer/components/AddonSection/MyInstall/index.tsx b/src/renderer/components/AddonSection/MyInstall/index.tsx index 17325b1e..7c452771 100644 --- a/src/renderer/components/AddonSection/MyInstall/index.tsx +++ b/src/renderer/components/AddonSection/MyInstall/index.tsx @@ -49,7 +49,7 @@ export const MyInstall: FC = ({ addon }) => { return Directories.inInstallPackage(addon, def.location.path); case 'packageCache': return Directories.inPackageCache(addon, def.location.path); - case 'documents': + case 'documents': { const documents = Directories.inDocumentsFolder(def.location.path); if (fs.existsSync(documents)) { return documents; @@ -57,6 +57,7 @@ export const MyInstall: FC = ({ addon }) => { // fallback for simbridge installations prior to 0.6 // remove afer transition period return Directories.inInstallPackage(addon, 'resources'); + } } };