diff --git a/app/routes/data-transfer_.complete.tsx b/app/routes/data-transfer_.complete.tsx
index d8d120f..c8e7931 100644
--- a/app/routes/data-transfer_.complete.tsx
+++ b/app/routes/data-transfer_.complete.tsx
@@ -7,4 +7,4 @@ export default function () {
message="Your request is now being processed; this normally takes 1-2 weeks."
/>
);
-}
\ No newline at end of file
+}
diff --git a/app/routes/data-transfer_.destination-account.tsx b/app/routes/data-transfer_.destination-account.tsx
index ac6abc6..18b0d77 100644
--- a/app/routes/data-transfer_.destination-account.tsx
+++ b/app/routes/data-transfer_.destination-account.tsx
@@ -31,4 +31,4 @@ export default function () {
);
-}
\ No newline at end of file
+}
diff --git a/app/routes/privacy.tsx b/app/routes/privacy.tsx
index 0343d7c..bc9a825 100644
--- a/app/routes/privacy.tsx
+++ b/app/routes/privacy.tsx
@@ -116,7 +116,8 @@ export default function () {
data storage provider.
- Google, LLC. (Mountain View, CA): Push notifications (if you use the app).
+ Google, LLC. (Mountain View, CA): Push notifications
+ (if you use the app).
Mailgun Technologies, Inc. (San Antonio, TX): Email
diff --git a/app/routes/proj-disp.tsx b/app/routes/proj-disp.tsx
index 06c299b..ea74878 100644
--- a/app/routes/proj-disp.tsx
+++ b/app/routes/proj-disp.tsx
@@ -1,6 +1,8 @@
import {
Card,
+ CardBody,
CardFooter,
+ CardHeader,
Container,
Divider,
Heading,
@@ -51,16 +53,14 @@ export default function () {
borderRadius="36px"
src={`/files/${project.image}`}
/>
-
-
-
- {project.name} ({project.timespan})
-
-
+
+ {project.name} ({project.timespan})
+
+
Time Span: {project.timespan}
{project.description}
-
+
{project.work_link ? (
diff --git a/functions/api/game-bans/notes/create.ts b/functions/api/game-bans/notes/create.ts
index 1fd8b7c..c5eec3b 100644
--- a/functions/api/game-bans/notes/create.ts
+++ b/functions/api/game-bans/notes/create.ts
@@ -19,5 +19,7 @@ export async function onRequestPost(context: RequestContext) {
await context.env.D1.prepare(
"INSERT INTO game_mod_notes (content, created_at, created_by, id, target) VALUES (?, ?, ?, ?, ?);",
- ).bind(content, Date.now(), context.data.current_user.id, id, target).first();
+ )
+ .bind(content, Date.now(), context.data.current_user.id, id, target)
+ .first();
}