feat: Script Generator Phase 1 — backend models, engine, API, and AD templates #105

Merged
chihlasm merged 78 commits from feat/script-generator into main 2026-03-15 00:19:00 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 1d280a5c78 - Show all commits

View File

@@ -158,8 +158,8 @@ export function ScriptConfigurePane({ canGenerate, onBack }: Props) {
<AlertTriangle size={13} />
Warnings
</div>
{generationWarnings.map((w, i) => (
<p key={i} className="text-xs text-amber-400/80">{w}</p>
{generationWarnings.map((w) => (
<p key={w} className="text-xs text-amber-400/80">{w}</p>
))}
</div>
)}

View File

@@ -17,7 +17,7 @@ export function TemplateCard({ template, onConfigure }: Props) {
return (
<div
className={cn(
'w-full text-left px-4 py-3 rounded-xl border transition-all',
'w-full px-4 py-3 rounded-xl border transition-all',
'border-border bg-transparent'
)}
>