Skip to content

Commit

Permalink
fix: fix ContactRequestCarousel time
Browse files Browse the repository at this point in the history
  • Loading branch information
pauljaijai committed Sep 27, 2024
1 parent 6e7dcb1 commit 7773730
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const ContactRequestCarousel: React.FunctionComponent<
> = ({ list }) => {
return (
<div className="relative flex h-32 w-full flex-row items-center justify-center overflow-hidden bg-slate-50 ">
<Marquee vertical className="text-xs [--duration:10s]">
<Marquee vertical className="text-xs [--duration:60s]">
{list.map((data) => {
if (data.type === "post") return <PostRow {...data} />
if (data.type === "member") return <MemberRow {...data} />
Expand Down

0 comments on commit 7773730

Please sign in to comment.