Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Nov 10, 2024
1 parent 12ebdce commit f928e2b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export function ContentBlockDisplay({
const totalDuration = isLoading
? undefined
: contentBlocks[0]?.contents.reduce((acc, curr) => {
return acc + (curr.duration || 0);
}, 0);
return acc + (curr.duration || 0);
}, 0);

if (!contentBlocks?.length) {
return null;
Expand Down Expand Up @@ -67,7 +67,7 @@ export function ContentBlockDisplay({
size={100}
transition={{
repeat: Infinity,
duration:10,
duration: 10,
ease: "linear",
}}
/>
Expand Down Expand Up @@ -143,7 +143,7 @@ export function ContentBlockDisplay({
className={cn(
"relative p-4",
index !== contentBlocks.length - 1 &&
"border-b border-border",
"border-b border-border",
)}
>
<AnimatePresence>
Expand Down

0 comments on commit f928e2b

Please sign in to comment.