From 810ae94832958bb3dda9924f3f7cef242eaf4d56 Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Tue, 25 Mar 2025 16:51:08 +0300 Subject: [PATCH] Pull request 2381: 7729-login-label Closes #7729. Squashed commit of the following: commit 110137ce9a958cc4e36d82d4c6fc38c4ec16bde7 Author: Ainar Garipov Date: Tue Mar 25 15:50:25 2025 +0300 client: fix login form labels --- client/src/login/Login/Form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/login/Login/Form.tsx b/client/src/login/Login/Form.tsx index 8709efcd..10cae9ef 100644 --- a/client/src/login/Login/Form.tsx +++ b/client/src/login/Login/Form.tsx @@ -62,7 +62,7 @@ const Form = ({ onSubmit, processing }: LoginFormProps) => { {...field} data-testid="password" type="password" - label={t('username_label')} + label={t('password_label')} placeholder={t('password_placeholder')} error={fieldState.error?.message} autoComplete="current-password"