fix(supply): Anfragencenter parse error — stray quote in JSX attribute string

The "Gesendet" empty-state description embedded an ASCII double-quote inside a German „…" pair, which Vite/oxc parsed as the end of the attribute string (PARSE_ERROR). Reworded without embedded quotes.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Benjamin Sutter
2026-06-21 01:36:39 +02:00
parent a8b54af0b8
commit be5523bcee
+1 -1
View File
@@ -33,7 +33,7 @@ export default function Anfragencenter() {
<ActiveInquiriesTab <ActiveInquiriesTab
filters={{ organizationId: orgId, kind: 'OFFER' }} filters={{ organizationId: orgId, kind: 'OFFER' }}
emptyTitle="Keine gesendeten Angebote" emptyTitle="Keine gesendeten Angebote"
emptyDescription="Angebote, die Sie aus „Latente Anfragen" versenden, erscheinen hier." emptyDescription="Angebote aus den latenten Anfragen erscheinen hier, sobald Sie sie versenden."
/> />
)} )}
{tab === 2 && <LatentInquiriesTab />} {tab === 2 && <LatentInquiriesTab />}