From f3e2cf5075c9147174def251e2dcd06650bc57d4 Mon Sep 17 00:00:00 2001 From: GitStart <1501599+gitstart@users.noreply.github.com> Date: Sat, 1 Oct 2022 18:01:41 -0300 Subject: [PATCH] Onboarding, input validation error isn't positioned correctly (#4758) Co-authored-by: gitstart Co-authored-by: gitstart Co-authored-by: Nitesh Singh Co-authored-by: Matheus Muniz <87545749+matheusmuniz03@users.noreply.github.com> Co-authored-by: Klinger Matheus <50892465+KlingerMatheus@users.noreply.github.com> Co-authored-by: Eman Co-authored-by: Grace Nshokano Co-authored-by: Olusanya Timothy <48022904+seunexplicit@users.noreply.github.com> Co-authored-by: Thiago Nascimbeni Co-authored-by: Peer Richelsen Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- apps/web/components/getting-started/steps-views/UserProfile.tsx | 2 +- .../web/components/getting-started/steps-views/UserSettings.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/components/getting-started/steps-views/UserProfile.tsx b/apps/web/components/getting-started/steps-views/UserProfile.tsx index 018df639b7..8c6d2382c0 100644 --- a/apps/web/components/getting-started/steps-views/UserProfile.tsx +++ b/apps/web/components/getting-started/steps-views/UserProfile.tsx @@ -149,7 +149,7 @@ const UserProfile = (props: IUserProfile) => { }} /> {errors.bio && ( -

+

{t("required")}

)} diff --git a/apps/web/components/getting-started/steps-views/UserSettings.tsx b/apps/web/components/getting-started/steps-views/UserSettings.tsx index 214060fa99..f55dc32a04 100644 --- a/apps/web/components/getting-started/steps-views/UserSettings.tsx +++ b/apps/web/components/getting-started/steps-views/UserSettings.tsx @@ -85,7 +85,7 @@ const UserSettings = (props: IUserSettingsProps) => { className="w-full rounded-md border border-gray-300 text-sm" /> {errors.name && ( -

+

{t("required")}

)}