feat: only show Upload button on library view
Build & Deploy / build-and-deploy (push) Successful in 47s

Changed hideUpload condition from route==='/play' to route!=='/'
so the + Upload button only appears on the library page.
This commit is contained in:
2026-06-14 13:12:23 +02:00
committed by Hermes Agent
parent 27f1c86135
commit ee13c4ecbd
+1 -1
View File
@@ -43,7 +43,7 @@
});
</script>
<Header onUploadClick={() => uploadTriggered++} hideUpload={route === "/play"} />
<Header onUploadClick={() => uploadTriggered++} hideUpload={route !== "/"} />
<main class="container">
{#if route === "/"}