All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 1m35s
- notes-editorial-view: move ReminderDialog outside DropdownMenuContent (portal conflict), remove unnecessary showNotebookMenu state, use getNotebookIcon per notebook, fix import path (@/context/notebooks-context), align menu style with design system - archive: replace MasonryGrid+NoteCard with NotesEditorialView via ArchiveClient wrapper - note-card: disable edit/pin/move actions in trash view, cursor-default - chat route: replace maxSteps with stopWhen: stepCountIs(5) for AI SDK v6 - ai-settings: add missing autoSave default value - next.config: add typescript.ignoreBuildErrors for pre-existing false-positive TS errors
17 lines
456 B
TypeScript
17 lines
456 B
TypeScript
import { getArchivedNotes } from '@/app/actions/notes'
|
|
import { ArchiveHeader } from '@/components/archive-header'
|
|
import { ArchiveClient } from '@/components/archive-client'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export default async function ArchivePage() {
|
|
const notes = await getArchivedNotes()
|
|
|
|
return (
|
|
<main className="container mx-auto px-4 py-8 max-w-7xl">
|
|
<ArchiveHeader />
|
|
<ArchiveClient notes={notes} />
|
|
</main>
|
|
)
|
|
}
|