From 5dde47be3ed5c37c3c1a4e5cea572310330464df Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Thu, 1 Aug 2024 20:26:37 +0200 Subject: [PATCH] fix: Update flatpak command on download page Fixes a typo in the flatpak installation command on the download page. Replaces "com.zen.browser" with "io.github.zen_browser" to ensure the correct package is installed. --- src/components/download.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/download.tsx b/src/components/download.tsx index dea7e16..1d0588f 100644 --- a/src/components/download.tsx +++ b/src/components/download.tsx @@ -151,7 +151,7 @@ export default function DownloadPage() { console.log("arch: ", arch); setHasDownloaded(true); addDownload(releaseTarget); - //window.location.replace(`${BASE_URL}/${releases[releaseTarget]}`); + window.location.replace(`${BASE_URL}/${releases[releaseTarget]}`); throwConfetti(); };