Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
style: format code with Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 2ef2d25 according to the output
from Prettier.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored and raspberri05 committed Oct 18, 2024
1 parent ff6d4c9 commit 7b5422a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/app/components/molecules/profile-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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("");
Expand Down
12 changes: 10 additions & 2 deletions application/app/components/organisms/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@ export default function Footer() {
<nav className="grid grid-flow-row gap-2 mb-[-0.5rem]">
<div className="grid grid-flow-col gap-4">
<LinkButton variant="ghost" text="About" href="/" />
<LinkButton variant="ghost" text="Contact" href="/contact" />
<LinkButton
variant="ghost"
text="Contact"
href="/contact"
/>
</div>
<div className="grid grid-flow-col gap-4">
<LinkButton variant="ghost" text="Privacy" href="/privacy" />
<LinkButton
variant="ghost"
text="Privacy"
href="/privacy"
/>
<LinkButton variant="ghost" text="Terms" href="/terms" />
</div>
</nav>
Expand Down
1 change: 0 additions & 1 deletion application/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,3 @@ export interface User {
provider_type: string | null;
provider_username: string | null;
}

0 comments on commit 7b5422a

Please sign in to comment.