tangled
alpha
login
or
join now
mary.my.id
/
boat
22
fork
atom
handy online tools for AT Protocol
boat.kelinci.net
atproto
bluesky
atcute
typescript
solidjs
22
fork
atom
overview
issues
pulls
pipelines
refactor: clean up
mary.my.id
3 months ago
b92f92d2
fd6292a4
verified
This commit was signed with the committer's
known signature
.
mary.my.id
SSH Key Fingerprint:
SHA256:ZlTP/auFSGpGnaoDg4mCTG1g9OZvXp62jWR4c6H4O3c=
+2
-15
2 changed files
expand all
collapse all
unified
split
src
views
bluesky
threadgate-applicator
steps
step2_rules-input.tsx
identity
plc-applicator
steps
step2_private-key-input.tsx
-7
src/views/bluesky/threadgate-applicator/steps/step2_rules-input.tsx
···
255
255
blurb={
256
256
<>
257
257
<span>This will apply to {filteredThreads().length} threads. </span>
258
258
-
{/* <button
259
259
-
type="button"
260
260
-
hidden={filteredThreads().length < 1}
261
261
-
class="font-medium text-purple-800 hover:underline"
262
262
-
>
263
263
-
View
264
264
-
</button> */}
265
258
</>
266
259
}
267
260
value={filter()}
+2
-8
src/views/identity/plc-applicator/steps/step2_private-key-input.tsx
···
97
97
});
98
98
},
99
99
onError(error) {
100
100
-
let message: string | undefined;
101
101
-
102
102
-
if (message !== undefined) {
103
103
-
setError(message);
104
104
-
} else {
105
105
-
console.error(error);
106
106
-
setError(`Something went wrong: ${error}`);
107
107
-
}
100
100
+
console.error(error);
101
101
+
setError(`Something went wrong: ${error}`);
108
102
},
109
103
});
110
104