remove hover state from export button

This commit is contained in:
Maze Winther 2026-02-03 08:33:42 +01:00
parent e84c0cfda6
commit 9bc35363b9
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ export function ExportButton() {
className={cn(
"flex items-center gap-1.5 rounded-md bg-[#38BDF8] px-[0.12rem] py-[0.12rem] text-white",
hasProject
? "cursor-pointer hover:brightness-105"
? "cursor-pointer"
: "cursor-not-allowed opacity-50",
)}
onClick={hasProject ? handleExport : undefined}