Browse Source

chore: generate

opencode-agent[bot] 1 month ago
parent
commit
58a8d9fcb0

File diff suppressed because it is too large
+ 648 - 216
packages/ui/src/v2/components/session-progress-indicator-v2.css


+ 1 - 5
packages/ui/src/v2/components/session-progress-indicator-v2.tsx

@@ -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>
   )
 }

Some files were not shown because too many files changed in this diff