personal web client for Bluesky
typescript
solidjs
bluesky
atcute
1diff --git a/dist/solid.js b/dist/solid.js
2index a36e31312a461cdf9999e22aa893ef29162750c8..6de1f7f7d608e07baa9edbc6f0ee394f7f9b4411 100644
3--- a/dist/solid.js
4+++ b/dist/solid.js
5@@ -1468,7 +1468,6 @@ function Show(props) {
6 const child = props.children;
7 const fn = typeof child === "function" && child.length > 0;
8 return fn ? untrack(() => child(keyed ? c : () => {
9- if (!untrack(condition)) throw narrowedError("Show");
10 return conditionValue();
11 })) : child;
12 }
13@@ -1500,7 +1499,6 @@ function Switch(props) {
14 const child = mp.children;
15 const fn = typeof child === "function" && child.length > 0;
16 return fn ? untrack(() => child(mp.keyed ? conditionValue() : () => {
17- if (untrack(switchFunc)()?.[0] !== index) throw narrowedError("Match");
18 return conditionValue();
19 })) : child;
20 }, undefined, undefined);