Skip to content

Commit 57fcc85

Browse files
authored
Merge pull request #214 from GeoXhacker/main
Fix: Add missing return statement in CircularGallery component
2 parents 164c689 + b3f1a1c commit 57fcc85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ts-tailwind/Components/CircularGallery/CircularGallery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ export default function CircularGallery({
710710
app.destroy();
711711
};
712712
}, [items, bend, textColor, borderRadius, font]);
713-
<div
713+
return <div
714714
className="w-full h-full overflow-hidden cursor-grab active:cursor-grabbing"
715715
ref={containerRef}
716716
/>;

0 commit comments

Comments
 (0)