Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli committed Nov 19, 2024
1 parent c581697 commit af99fd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/visualization/src/app/react-dom/FadeIn/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ export default function Page() {
key={userId}
clientOnly
fallback={
<FadeIn delay={200} duration={1000} inViewOptions={{ triggerOnce: true }}>
<FadeIn delay={200} duration={1000}>
{skeleton}
</FadeIn>
}
>
<SuspenseQuery {...query.user(userId)}>
{({ data: user }) => (
<FadeIn duration={200} className="max-w-[344px]">
<FadeIn duration={200} inViewOptions={{ triggerOnce: true }} className="max-w-[344px]">
<h1 className="text-lg font-bold">{user.username}</h1>
<p className="text-xs">{user.userAgent}</p>
<p>{user.age}</p>
Expand Down

0 comments on commit af99fd1

Please sign in to comment.