From b56f01a52b2125b50af57baca9b4a9169f0eac56 Mon Sep 17 00:00:00 2001 From: Sven Reiser Date: Sun, 21 Jun 2026 12:13:43 +0200 Subject: [PATCH] fix(color): use the destructive token for the signup error text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Swaps the raw text-red-500 on the signup form's error alert to the semantic destructive token. No dependency bump needed — destructive predates 0.5.0. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/app/signup/signup-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/signup/signup-form.tsx b/src/app/signup/signup-form.tsx index 656d289..a68a3ee 100644 --- a/src/app/signup/signup-form.tsx +++ b/src/app/signup/signup-form.tsx @@ -79,7 +79,7 @@ export function SignupForm() { /> {error && ( -

+

{error}

)}