Compare commits

...

1 Commits

Author SHA1 Message Date
Dhruwang
e2837bccec fix: auto-expand multi-language card when toggle is enabled (#7494)
When the Multiple Languages toggle was turned on, users had to separately
click the card to expand it. Now the card auto-expands on activation,
matching the pattern used by the welcome card toggle.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 17:45:55 +05:30

View File

@@ -163,6 +163,9 @@ export const MultiLanguageCard: FC<MultiLanguageCardProps> = ({
}
} else {
setIsMultiLanguageActivated(true);
if (!open) {
setOpen(true);
}
}
};