chore: formatting
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kieran 2023-12-10 17:41:25 +00:00
parent a1e9df8254
commit d00f8b0d85
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
3 changed files with 20 additions and 19 deletions

View File

@ -158,7 +158,7 @@ export function NoteCreator() {
async function sendNote() {
const ev = await buildNote();
if (ev) {
trackEvent("PostNote")
trackEvent("PostNote");
if (ev.tags.find(a => a[0] === "content-warning")) {
trackEvent("PostNote:WithContentWarning");
}
@ -352,18 +352,18 @@ export function NoteCreator() {
onChange={e => {
note.update(
v =>
(v.selectedCustomRelays =
// set false if all relays selected
e.target.checked &&
(v.selectedCustomRelays =
// set false if all relays selected
e.target.checked &&
note.selectedCustomRelays &&
note.selectedCustomRelays.length == a.length - 1
? undefined
: // otherwise return selectedCustomRelays with target relay added / removed
a.filter(el =>
el === r
? e.target.checked
: !note.selectedCustomRelays || note.selectedCustomRelays.includes(el),
)),
? undefined
: // otherwise return selectedCustomRelays with target relay added / removed
a.filter(el =>
el === r
? e.target.checked
: !note.selectedCustomRelays || note.selectedCustomRelays.includes(el),
)),
);
}}
/>
@ -432,9 +432,9 @@ export function NoteCreator() {
onChange={e =>
note.update(
v =>
(v.zapSplits = arr.map((vv, ii) =>
ii === i ? { ...vv, weight: Number(e.target.value) } : vv,
)),
(v.zapSplits = arr.map((vv, ii) =>
ii === i ? { ...vv, weight: Number(e.target.value) } : vv,
)),
)
}
/>

View File

@ -148,10 +148,11 @@ export default function ZapPoolPage() {
</p>
<p>
{wallet && (
<AsyncButton onClick={async () => {
trackEvent("ZapPool:Manual")
await ZapPoolController?.payout(wallet);
}}>
<AsyncButton
onClick={async () => {
trackEvent("ZapPool:Manual");
await ZapPoolController?.payout(wallet);
}}>
<FormattedMessage defaultMessage="Payout Now" id="+PzQ9Y" />
</AsyncButton>
)}

View File

@ -168,7 +168,7 @@ class ZapPool extends ExternalStore<Array<ZapPoolRecipient>> {
if (wallet.canAutoLogin()) {
await wallet.login();
}
trackEvent("ZapPool:Automatic")
trackEvent("ZapPool:Automatic");
await this.payout(wallet);
}
}