From ad0e617ed040752995f447255d4b806f15c75a70 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Mon, 13 Apr 2026 09:33:01 +0700 Subject: [PATCH] fix: render button if href is provided and is disabled --- src/components/Button.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Button.tsx b/src/components/Button.tsx index b55e5e24..7c8eac47 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -51,7 +51,7 @@ const Button = ({ return ( <> - {!href && ( + {(!href || (href && disabled)) && (