Skip to content

Commit

Permalink
🎨 Code format tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ckoates committed Nov 17, 2024
1 parent 276e611 commit 6df1972
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions app/lib/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ export async function subscribe(
Authorization: `Bearer ${RESEND_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
email,
}),
body: JSON.stringify({ email }),
},
);

Expand Down
6 changes: 2 additions & 4 deletions app/lib/mergeMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export default function mergeMetadata({
description?: string;
image?: string;
imageAlt?: string;
} = {}) {
const metadata: Metadata = {
} = {}): Metadata {
return {
title: title ? `${title} • Nick Oates` : "Nick Oates",
openGraph: {
siteName: "Nick Oates",
Expand All @@ -36,6 +36,4 @@ export default function mergeMetadata({
},
},
};

return metadata;
}

0 comments on commit 6df1972

Please sign in to comment.