-7
src/views/bluesky/threadgate-applicator/steps/step2_rules-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
-
{/* <button
259
-
type="button"
260
-
hidden={filteredThreads().length < 1}
261
-
class="font-medium text-purple-800 hover:underline"
262
-
>
263
-
View
264
-
</button> */}
265
258
</>
266
259
}
267
260
value={filter()}
+2
-8
src/views/identity/plc-applicator/steps/step2_private-key-input.tsx
+2
-8
src/views/identity/plc-applicator/steps/step2_private-key-input.tsx
···
97
97
});
98
98
},
99
99
onError(error) {
100
-
let message: string | undefined;
101
-
102
-
if (message !== undefined) {
103
-
setError(message);
104
-
} else {
105
-
console.error(error);
106
-
setError(`Something went wrong: ${error}`);
107
-
}
100
+
console.error(error);
101
+
setError(`Something went wrong: ${error}`);
108
102
},
109
103
});
110
104