From 9a43d49b3b0dc7b74523fb8a1862efcdd77be55e Mon Sep 17 00:00:00 2001 From: Josiah Glosson Date: Tue, 8 Jul 2025 17:13:55 -0500 Subject: [PATCH] Fix lint --- apps/app-frontend/src/App.vue | 12 +++++++++--- apps/app/tauri.conf.json | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue index ca2d1e7d3..4f5bd1b2a 100644 --- a/apps/app-frontend/src/App.vue +++ b/apps/app-frontend/src/App.vue @@ -364,9 +364,11 @@ async function checkUpdates() { if (!!update) { console.log(`Update ${update.version} is available.`) if (update.version === availableUpdate.value?.version) { - console.log('Skipping update modal because the new version is the same as the dismissed update') + console.log( + 'Skipping update modal because the new version is the same as the dismissed update', + ) } else { - availableUpdate.value = update; + availableUpdate.value = update updateModal.value.show(update) } } @@ -475,7 +477,11 @@ function handleAuxClick(e) {
- + diff --git a/apps/app/tauri.conf.json b/apps/app/tauri.conf.json index 1c9a71e81..724e536d8 100644 --- a/apps/app/tauri.conf.json +++ b/apps/app/tauri.conf.json @@ -41,7 +41,7 @@ ] }, "productName": "Modrinth App", - "version": "0.9.0", + "version": "../app-frontend/package.json", "mainBinaryName": "Modrinth App", "identifier": "ModrinthApp", "plugins": {