Skip to content

Commit

Permalink
chore: run prettier formatting, test CICD preview deployment for errors
Browse files Browse the repository at this point in the history
  • Loading branch information
marktlinn committed Sep 8, 2023
1 parent b281975 commit b09075a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/ideation/components/VoteCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ function VoteCard({ users, voted }: VoteCardProps) {
<h1 className="text-3xl font-semibold text-neutral-focus">
{users.length}
</h1>
<h2 className="text-xl font-semibold text-neutral-focus">{`Vote${users.length > 1 ? "s" : ""}`}</h2>
<h2 className="text-xl font-semibold text-neutral-focus">{`Vote${
users.length > 1 ? "s" : ""
}`}</h2>
<div className="avatar-group -space-x-2 w-full">
{users.map((user) => (
<Avatar width={24} height={24} key={user} />
Expand Down

0 comments on commit b09075a

Please sign in to comment.