Format
tests / tests (push) Failing after 5m17s

This commit is contained in:
Jon Staab
2026-06-20 10:36:40 -07:00
parent d2b57c559d
commit 22a666d497
53 changed files with 388 additions and 145 deletions
+2 -3
View File
@@ -43,9 +43,8 @@ export class Profiles extends DerivedPlugin<Profile> {
const read = ($profile: Maybe<Profile>) =>
pubkey ? ($profile?.display() ?? displayPubkey(pubkey)) : ""
return projection(
pubkey ? derived(this.one(pubkey, ...args), read) : readable(""),
() => read(pubkey ? this.get(pubkey) : undefined),
return projection(pubkey ? derived(this.one(pubkey, ...args), read) : readable(""), () =>
read(pubkey ? this.get(pubkey) : undefined),
)
}
}