cleanup: audit complet — code mort supprimé, erreurs TS corrigées, i18n wizard ajouté
All checks were successful
CI / Lint, Unit Tests & Build (push) Successful in 5m0s
CI / Deploy production (on server) (push) Successful in 1m2s

Supprimé:
- memento-note/memento-note/ (dossier fantôme, 7 erreurs TS)
- tiptap-subpage-extension.tsx + toutes ses références (feature retirée)

Corrigé:
- tiptap-columns-extension.tsx: PMNode import type → import value
- study-plan/route.ts: title null → string conversion
- csv/route.ts: paramètre implicit any

Ajouté:
- Section wizard.* complète (33 clés) dans fr.json + en.json
- generalContinue + structuredViewsTagApplied dans fr/en
This commit is contained in:
Antigravity
2026-06-19 21:53:10 +00:00
parent 723f7ef432
commit 299836bd74
10 changed files with 111 additions and 879 deletions

View File

@@ -121,7 +121,7 @@ export async function POST(request: NextRequest) {
const headers = parseCSVLine(lines[0].replace(/^\uFEFF/, ''))
const titleIdx = headers.findIndex(h => h.toLowerCase().includes('titre') || h.toLowerCase() === 'title')
const dataRows = lines.slice(1).filter(l => l.trim())
const dataRows = lines.slice(1).filter((l: string) => l.trim())
// Get or create schema
let schema = await prisma.notebookSchema.findUnique({ where: { notebookId } })