Skip to content

Commit 2975980

Browse files
committed
feat: Implement CSV validator layout and auto-save functionality
1 parent 098da3e commit 2975980

File tree

6 files changed

+408
-386
lines changed

6 files changed

+408
-386
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,22 +85,22 @@ This project uses a layered approach for quality assurance:
8585

8686
**Manual Checks:**
8787

88-
```sh
88+
```sh
8989
# Lint check
90-
pnpm lint
90+
pnpm lint
9191

9292
# Format check (Prettier)
93-
pnpm format --check
93+
pnpm format --check
9494

9595
# Run unit tests
9696
pnpm test:unit
9797

9898
# Run all tests (unit + integration)
99-
pnpm test
99+
pnpm test
100100

101101
# Run E2E tests (Playwright)
102-
pnpm e2e
103-
```
102+
pnpm e2e
103+
```
104104

105105
---
106106

app/api/schemas/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function GET() {
2020

2121
console.log(`[API /api/schemas] Mapped schemas:`, schemas);
2222

23-
return NextResponse.json({ schemas: schemas });
23+
return NextResponse.json({ schemas: jsonFiles });
2424
} catch (error: unknown) {
2525
console.error("[API /api/schemas] Error:", error);
2626
const message = error instanceof Error ? error.message : String(error);

0 commit comments

Comments
 (0)