personal web client for Bluesky
typescript
solidjs
bluesky
atcute
1diff --git a/dist/solid.js b/dist/solid.js
2index 2571609363d5758d32e2aa88489acca146a6d308..4a1e0bf4e523fb075340e0c2ccef0a4a9ab12f7f 100644
3--- a/dist/solid.js
4+++ b/dist/solid.js
5@@ -1581,7 +1581,6 @@ function Show(props) {
6 keyed
7 ? c
8 : () => {
9- if (!untrack(condition)) throw narrowedError("Show");
10 return props.when;
11 }
12 )
13@@ -1628,7 +1627,6 @@ function Switch(props) {
14 keyed
15 ? when
16 : () => {
17- if (untrack(evalConditions)[0] !== index) throw narrowedError("Match");
18 return cond.when;
19 }
20 )