diff --git a/application/app/components/molecules/profile-card.tsx b/application/app/components/molecules/profile-card.tsx index 6f3f304..d6d9b29 100644 --- a/application/app/components/molecules/profile-card.tsx +++ b/application/app/components/molecules/profile-card.tsx @@ -4,7 +4,7 @@ import { getData } from "@/app/api/actions/settings/actions"; import { useEffect, useState } from "react"; import Card from "@/app/components/atoms/card"; import { User } from "@/utils/types"; -import Image from 'next/image'; +import Image from "next/image"; export default function ProfileCard() { const [displayName, setDisplayName] = useState(""); diff --git a/application/app/components/organisms/footer.tsx b/application/app/components/organisms/footer.tsx index c1a0b44..477f004 100644 --- a/application/app/components/organisms/footer.tsx +++ b/application/app/components/organisms/footer.tsx @@ -6,10 +6,18 @@ export default function Footer() { diff --git a/application/utils/types.ts b/application/utils/types.ts index a751f03..060f107 100644 --- a/application/utils/types.ts +++ b/application/utils/types.ts @@ -52,4 +52,3 @@ export interface User { provider_type: string | null; provider_username: string | null; } -