Skip to content

Commit e9cc61d

Browse files
committed
fix logging and packages
1 parent f567896 commit e9cc61d

4 files changed

Lines changed: 5017 additions & 225 deletions

File tree

app/api/concepts/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export async function GET(req: Request) {
55
try {
66
const { searchParams } = new URL(req.url);
77
const domain = searchParams.get("domain") || "All";
8-
8+
99
const concepts = await getConcepts(domain);
1010

1111
return NextResponse.json(concepts);

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function Home() {
2020
if (Array.isArray(data)) {
2121
setConcepts(data);
2222
} else {
23-
console.error("Concepts is not array:", data);
23+
console.error("Concepts is not an array:", data);
2424
setConcepts([]);
2525
}
2626
})

docker-compose.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)