@giselles-ai/browser-tool 0.1.24 → 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.
- package/dist/react/index.js +6 -10
- package/package.json +1 -1
package/dist/react/index.js
CHANGED
|
@@ -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) =>
|
|
698
|
-
|
|
699
|
-
{
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
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
|
] })
|