changed onboarding step to not render span

This commit is contained in:
Lucas Oliveira 2025-10-17 17:19:22 -03:00 committed by Mike Fortman
parent f19b217853
commit 284b3ef8b5

View file

@ -82,7 +82,6 @@ export function OnboardingStep({
)}
chatMessage={text}
/>
<span className="inline-block w-1 h-4 bg-primary ml-1 animate-pulse" />
</div>
) : (
<p
@ -98,7 +97,7 @@ export function OnboardingStep({
)}
{children && (
<AnimatePresence>
{showChildren && !isCompleted && (
{((showChildren && !isCompleted) || isMarkdown) && (
<motion.div
initial={{ opacity: 0, y: -10 }}
animate={{ opacity: 1, y: 0 }}