From 7ce6553178333d2f8bc4772d95a78eed61b68856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristhian=20Fern=C3=A1ndez?= Date: Wed, 11 Dec 2024 23:21:21 -0500 Subject: [PATCH] fix: select (#526) --- components/TextField/TextField.tsx | 1 + hooks/useInstallation.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/TextField/TextField.tsx b/components/TextField/TextField.tsx index 7cf614a4..25d9a3ba 100644 --- a/components/TextField/TextField.tsx +++ b/components/TextField/TextField.tsx @@ -108,6 +108,7 @@ const TextField: FunctionComponent = ({ startAdornment={startAdormentIcon} inputProps={{ 'aria-label': label, + ...props.inputProps, }} /> {helperText && ( diff --git a/hooks/useInstallation.ts b/hooks/useInstallation.ts index d0af5710..66c6b60b 100644 --- a/hooks/useInstallation.ts +++ b/hooks/useInstallation.ts @@ -27,7 +27,7 @@ const getInstallationTitles = ( 0: `Now, let’s get you authenticated`, 1: `Let’s configure your ${installType} - ${gitProvider} cluster`, 2: `Grab a cup of tea or coffee while we set up your cluster...`, - 3: 'You’re all set!', + 3: '', }; } @@ -36,7 +36,7 @@ const getInstallationTitles = ( 1: `Now, let’s get you authenticated`, 2: `Let’s configure your ${installType} - ${gitProvider} cluster`, 3: `Grab a cup of tea or coffee while we set up your cluster...`, - 4: 'You’re all set!', + 4: '', }; };