diff --git a/src/app/ideation/components/VoteCard.tsx b/src/app/ideation/components/VoteCard.tsx
index f236e3e6..2b0c39bc 100644
--- a/src/app/ideation/components/VoteCard.tsx
+++ b/src/app/ideation/components/VoteCard.tsx
@@ -12,7 +12,9 @@ function VoteCard({ users, voted }: VoteCardProps) {
{users.map((user) => (
diff --git a/src/components/Avatar.tsx b/src/components/Avatar.tsx
index 927ac5b9..00639d0f 100644
--- a/src/components/Avatar.tsx
+++ b/src/components/Avatar.tsx
@@ -6,7 +6,11 @@ interface AvatarProps {
height: number;
}
-export default function Avatar({ image, width = 24, height = 24 }: AvatarProps) {
+export default function Avatar({
+ image,
+ width = 24,
+ height = 24,
+}: AvatarProps) {
return (
-
);
}
diff --git a/src/components/navbar/DropDownLink.tsx b/src/components/navbar/DropDownLink.tsx
index 0353372f..285f65cf 100644
--- a/src/components/navbar/DropDownLink.tsx
+++ b/src/components/navbar/DropDownLink.tsx
@@ -5,10 +5,7 @@ interface DropDownLinkProps {
href?: string;
}
-export default function DropDownLink({
- title,
- href = "#",
-}: DropDownLinkProps) {
+export default function DropDownLink({ title, href = "#" }: DropDownLinkProps) {
return (