Skip to content

Commit cb6b52b

Browse files
right fix (calcom#26963)
Co-authored-by: Anik Dhabal Babu <adhabal2002@gmail.com>
1 parent e8e50b7 commit cb6b52b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/modules/onboarding/personal/settings/personal-settings-view.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export const PersonalSettingsView = ({
204204
{/* Bio */}
205205
<div className="flex w-full flex-col gap-1.5">
206206
<Label className="text-emphasis mb-0 text-sm font-medium leading-4">{t("bio")}</Label>
207-
<TextArea {...form.register("bio")} className="min-h-[108px]" />
207+
<TextArea {...form.register("bio")} className="min-h-[108px] max-h-[150px]" />
208208
{form.formState.errors.bio && (
209209
<p className="text-error text-sm">{form.formState.errors.bio.message}</p>
210210
)}

0 commit comments

Comments
 (0)