From d59c7bfd03c8fd93f194c91ac8307081349bab6d Mon Sep 17 00:00:00 2001 From: oobabooga Date: Thu, 23 Jul 2026 01:56:14 -0300 Subject: [PATCH] Studio: prevent login error text clipping (#7343) --- studio/frontend/src/features/auth/components/auth-form.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/studio/frontend/src/features/auth/components/auth-form.tsx b/studio/frontend/src/features/auth/components/auth-form.tsx index 73db10d41b..3eec1dba88 100644 --- a/studio/frontend/src/features/auth/components/auth-form.tsx +++ b/studio/frontend/src/features/auth/components/auth-form.tsx @@ -439,7 +439,11 @@ export function AuthForm({ mode }: AuthFormProps): ReactElement | null { {helperText && (

{helperText}

)} - {error &&

{error}

} + {error && ( +

+ {error} +

+ )}