You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: extract JSX object literals to avoid Handlebars double-brace conflict
Handlebars interprets `={{` in JSX (e.g., `labels={{ title: "..." }}`)
as template syntax, causing parse errors during template rendering.
Fix: extract labels and suggestions as const variables before JSX,
using single-brace `{labels}` which Handlebars ignores.
0 commit comments