Skip to content

Commit

Permalink
fix(Activity): children are not correctly suspended
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Nov 4, 2024
1 parent e29a444 commit e65a0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/components/Activity/Activity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export const Activity: FC<Props> = (props) => {

return (
<Suspense fallback={null}>
{children}
{!isActive && <SuspenseTrigger />}
{children}
</Suspense>
);
};

0 comments on commit e65a0f3

Please sign in to comment.