fix: simplified JSX string to avoid escaping issues
All checks were successful
Deploy Development / deploy (push) Successful in 43s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 18s

This commit is contained in:
Lars 2026-03-25 21:42:01 +01:00
parent 5249cd6939
commit 0a3e76128a

View File

@ -390,7 +390,7 @@ export default function UnifiedPromptModal({ prompt, onSave, onClose }) {
style={{ width: '100%', textAlign: 'left', resize: 'vertical', fontFamily: 'monospace', fontSize: 12 }}
/>
<div style={{ fontSize: 11, color: 'var(--text3)', marginTop: 4 }}>
Verwende {'{{'}platzhalter{'}}'} für dynamische Werte (z.B. {'{{'}weight_data{'}}', {'{{'}nutrition_data{'}}'})
Verwende {'{{'} und {'}}'} für Platzhalter (z.B. weight_data, nutrition_data)
</div>
</div>
)}