From 3752ac767a3b3356108786c8483ede6afc01ffef Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Mon, 3 Oct 2022 17:08:17 +0100 Subject: [PATCH] Remove eye for todays release (#4802) --- packages/ui/v2/core/form/fields.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/ui/v2/core/form/fields.tsx b/packages/ui/v2/core/form/fields.tsx index 74c08735f3..0c2d9c6914 100644 --- a/packages/ui/v2/core/form/fields.tsx +++ b/packages/ui/v2/core/form/fields.tsx @@ -250,25 +250,25 @@ export const PasswordField = forwardRef(funct props, ref ) { - const { t } = useLocale(); + /*const { t } = useLocale(); const [isPasswordVisible, setIsPasswordVisible] = useState(false); const toggleIsPasswordVisible = useCallback( () => setIsPasswordVisible(!isPasswordVisible), [isPasswordVisible, setIsPasswordVisible] ); const textLabel = isPasswordVisible ? t("hide_password") : t("show_password"); - +*/ return (
- + {/* - + */}
); });