@giselles-ai/browser-tool 0.1.23 → 0.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -694,16 +694,12 @@ function PromptPanel({
694
694
  )) }),
695
695
  combinedWarnings.length > 0 ? /* @__PURE__ */ jsxs("div", { className: "mt-3 rounded-md border border-amber-400/30 bg-amber-400/10 p-2", children: [
696
696
  /* @__PURE__ */ jsx2("p", { className: "text-[11px] font-semibold uppercase tracking-[0.12em] text-amber-200", children: "Warnings" }),
697
- /* @__PURE__ */ jsx2("ul", { className: "mt-1 space-y-1 text-xs text-amber-100", children: combinedWarnings.map((warning, index) => /* @__PURE__ */ jsxs(
698
- "li",
699
- {
700
- children: [
701
- "- ",
702
- warning
703
- ]
704
- },
705
- `${warning}-${// biome-ignore lint/suspicious/noArrayIndexKey: wip
706
- index}`
697
+ /* @__PURE__ */ jsx2("ul", { className: "mt-1 space-y-1 text-xs text-amber-100", children: combinedWarnings.map((warning, index) => (
698
+ // biome-ignore lint/suspicious/noArrayIndexKey: render-only list, no reordering
699
+ /* @__PURE__ */ jsxs("li", { children: [
700
+ "- ",
701
+ warning
702
+ ] }, `${warning}-${index}`)
707
703
  )) })
708
704
  ] }) : null
709
705
  ] })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giselles-ai/browser-tool",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "license": "Apache-2.0",