handy online tools for AT Protocol boat.kelinci.net
atproto bluesky atcute typescript solidjs
20
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: properly disable on zero threads

Mary ed5c2540 7bf6ce44

+3 -3
+3 -3
src/views/bluesky/threadgate-applicator/steps/step2_rules-input.tsx
··· 115 115 const $threadRules = threadRules(); 116 116 117 117 return ( 118 - $threads.length !== 0 && 119 - $threadRulesPreset === ThreadRulePreset.CUSTOM && 120 - ($threadRules === undefined || $threadRules.length === 0) 118 + $threads.length === 0 || 119 + ($threadRulesPreset === ThreadRulePreset.CUSTOM && 120 + ($threadRules === undefined || $threadRules.length === 0)) 121 121 ); 122 122 }); 123 123