@wrongstack/webui 0.275.0 → 0.275.1

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/index.html CHANGED
@@ -5,7 +5,7 @@
5
5
  <link rel="icon" type="image/svg+xml" href="/wrongstack.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>WrongStack WebUI</title>
8
- <script type="module" crossorigin src="/assets/index-BG4jUAmc.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-COYIBP3F.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/assets/rolldown-runtime-QTnfLwEv.js">
10
10
  <link rel="modulepreload" crossorigin href="/assets/vendor-Cl_sFcw4.js">
11
11
  <link rel="stylesheet" crossorigin href="/assets/vendor-Doh9e_v3.css">
package/dist/index.js CHANGED
@@ -25129,7 +25129,10 @@ function WorktreesPanel() {
25129
25129
  const diffByDir = useWorktreeStore((s) => s.diffByDir);
25130
25130
  const [busyBranch, setBusyBranch] = useState60(null);
25131
25131
  const [openDiff, setOpenDiff] = useState60(null);
25132
- const send = client2?.send;
25132
+ const send = useMemo29(
25133
+ () => client2 ? client2.send.bind(client2) : void 0,
25134
+ [client2]
25135
+ );
25133
25136
  useEffect54(() => {
25134
25137
  send?.({ type: "worktree.scan" });
25135
25138
  }, [send]);