chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-23 10:28:43 +00:00
parent d24848359d
commit 58a8d9fcb0
2 changed files with 676 additions and 230 deletions

View File

@ -26,11 +26,7 @@ export function SessionProgressIndicatorV2(props: ComponentProps<"svg">) {
data-component="session-progress-indicator-v2"
aria-hidden={rest["aria-hidden"] ?? "true"}
>
<For each={dots}>
{(cell) => (
<rect data-dot={cell.index} x={cell.x} y={cell.y} width={dot} height={dot} />
)}
</For>
<For each={dots}>{(cell) => <rect data-dot={cell.index} x={cell.x} y={cell.y} width={dot} height={dot} />}</For>
</svg>
)
}