Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { OnboardingLayout } from "../../components/OnboardingLayout";
import { OnboardingBrowserView } from "../../components/onboarding-browser-view";
import { OnboardingContinuationPrompt } from "../../components/onboarding-continuation-prompt";
import { useOnboardingStore } from "../../store/onboarding-store";
import { Icon } from "@calcom/ui/components/icon";

type PersonalSettingsViewProps = {
userEmail: string;
Expand Down Expand Up @@ -204,7 +205,11 @@ export const PersonalSettingsView = ({
{/* Bio */}
<div className="flex w-full flex-col gap-1.5">
<Label className="text-emphasis mb-0 text-sm font-medium leading-4">{t("bio")}</Label>
<TextArea {...form.register("bio")} className="min-h-[108px]" />
<TextArea {...form.register("bio")} maxLength={256} className="min-h-[108px] max-h-[108px] resize-y overflow-y-auto" />
<p className="text-subtle mt-1 flex gap-1 text-sm">
<Icon name="info" className="mt-0.5 flex-shrink-0" />
<span className="flex-1">{t("tip_onboarding")}</span>
</p>
{form.formState.errors.bio && (
<p className="text-error text-sm">{form.formState.errors.bio.message}</p>
)}
Expand Down
2 changes: 2 additions & 0 deletions apps/web/public/static/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -1746,6 +1746,8 @@
"finish_and_start": "Finish setup and get started",
"user_has_no_bio": "This user has not added a bio yet.",
"bio": "Bio",
"tip_onboarding": "0/256 characters",
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Jan 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Bio helper text shows a hard-coded "0/256 characters" that never updates, giving an incorrect character count after typing.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/web/public/static/locales/en/common.json, line 1685:

<comment>Bio helper text shows a hard-coded "0/256 characters" that never updates, giving an incorrect character count after typing.</comment>

<file context>
@@ -1682,6 +1682,7 @@
   "finish_and_start": "Finish setup and get started",
   "user_has_no_bio": "This user has not added a bio yet.",
   "bio": "Bio",
+  "tip_onboarding": "0/256 characters", 
   "delete_account_modal_title": "Delete Account",
   "confirm_delete_account_modal": "Are you sure you want to delete your {{appName}} account?",
</file context>
Fix with Cubic

"delete_account_modal_title": "Delete Account",
"delete_account_modal_title": "Delete account",
"confirm_delete_account_modal": "Are you sure you want to delete your {{appName}} account?",
"delete_my_account": "Delete my account",
Expand Down
Loading