diff --git a/app/api/bounties/[id]/route.ts b/app/api/bounties/[id]/route.ts
index cd82b52..b8c1f5c 100644
--- a/app/api/bounties/[id]/route.ts
+++ b/app/api/bounties/[id]/route.ts
@@ -1,24 +1,24 @@
-import { NextResponse } from "next/server";
-import { getBountyById } from "@/lib/mock-bounty";
-import { BountyLogic } from "@/lib/logic/bounty-logic";
-
-export async function GET(
- request: Request,
- { params }: { params: Promise<{ id: string }> },
-) {
- // Simulate network delay in development only
- if (process.env.NODE_ENV === "development") {
- await new Promise((resolve) => setTimeout(resolve, 500));
- }
-
- const { id } = await params;
- const bounty = getBountyById(id);
-
- if (!bounty) {
- return NextResponse.json({ error: "Bounty not found" }, { status: 404 });
- }
-
- const processed = BountyLogic.processBountyStatus(bounty);
-
- return NextResponse.json(processed);
-}
+import { NextResponse } from "next/server";
+import { getBountyById } from "@/lib/mock-bounty";
+import { BountyLogic } from "@/lib/logic/bounty-logic";
+
+export async function GET(
+ request: Request,
+ { params }: { params: Promise<{ id: string }> },
+) {
+ // Simulate network delay in development only
+ if (process.env.NODE_ENV === "development") {
+ await new Promise((resolve) => setTimeout(resolve, 500));
+ }
+
+ const { id } = await params;
+ const bounty = getBountyById(id);
+
+ if (!bounty) {
+ return NextResponse.json({ error: "Bounty not found" }, { status: 404 });
+ }
+
+ const processed = BountyLogic.processBountyStatus(bounty);
+
+ return NextResponse.json(processed);
+}
diff --git a/app/bounty/[bountyId]/loading.tsx b/app/bounty/[bountyId]/loading.tsx
index 26b3ba0..23694dc 100644
--- a/app/bounty/[bountyId]/loading.tsx
+++ b/app/bounty/[bountyId]/loading.tsx
@@ -1,5 +1,5 @@
-import { BountySkeleton } from "@/components/bounty/bounty-skeleton"
+import { BountySkeleton } from "@/components/bounty/bounty-skeleton";
export default function Loading() {
- return
+ return ;
}
diff --git a/app/bounty/[bountyId]/not-found.tsx b/app/bounty/[bountyId]/not-found.tsx
index 9253642..5cb0e35 100644
--- a/app/bounty/[bountyId]/not-found.tsx
+++ b/app/bounty/[bountyId]/not-found.tsx
@@ -1,6 +1,6 @@
-import { Button } from "@/components/ui/button"
-import { FileQuestion } from "lucide-react"
-import Link from "next/link"
+import { Button } from "@/components/ui/button";
+import { FileQuestion } from "lucide-react";
+import Link from "next/link";
export default function NotFound() {
return (
@@ -10,13 +10,17 @@ export default function NotFound() {
Bounty Not Found
- The bounty you're looking for doesn't exist or has been removed.
+ The bounty you're looking for doesn't exist or has been
+ removed.
-