d0b3f21bde
Remove AI-dependent extensions (ai-chat, ai-categorization, receipt-ocr, invoice-inbox) and their infrastructure (lib/ai/*, ai-consent, LangChain/ Anthropic/OpenAI deps) to simplify core and reduce bundle size. Restructure monolithic settings page into dedicated sub-pages (company, bookkeeping, invoicing, tax, banking, api, account, team, templates) with shared layout and sidebar navigation. Add atomic commit_journal_entry RPC so voucher number increment and status update happen in a single transaction — prevents burned numbers on constraint failures. Add continuity check report and voucher gap explanation tracking. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
964 B
TypeScript
25 lines
964 B
TypeScript
'use client'
|
|
|
|
import type { WorkspaceComponentProps } from '@/lib/extensions/workspace-registry'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Landmark, Settings } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
|
|
export default function EnableBankingWorkspace({ userId }: WorkspaceComponentProps) {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center py-16 text-center">
|
|
<Landmark className="h-12 w-12 text-muted-foreground/40 mb-4" />
|
|
<h3 className="text-lg font-medium text-foreground">Bankintegration (PSD2)</h3>
|
|
<p className="text-sm text-muted-foreground mt-1 max-w-md">
|
|
Koppla ditt bankkonto under Inställningar för att synka transaktioner automatiskt.
|
|
</p>
|
|
<Button asChild variant="outline" className="mt-4">
|
|
<Link href="/settings/banking">
|
|
<Settings className="mr-2 h-4 w-4" />
|
|
Gå till bankinställningar
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|