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

This commit is contained in:
Kieran 2024-01-23 15:36:48 +00:00
parent 5cea096067
commit 982f4df0a3
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
5 changed files with 28 additions and 12 deletions

View File

@ -163,7 +163,14 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) {
)}
<div className="profile-wrapper w-max">
<AvatarSection id={id} loginPubKey={loginPubKey} user={user} readonly={readonly} lnurl={lnurl} />
<ProfileDetails user={user} loginPubKey={loginPubKey} id={id} aboutText={aboutText} lnurl={lnurl} showLnQr={true} />
<ProfileDetails
user={user}
loginPubKey={loginPubKey}
id={id}
aboutText={aboutText}
lnurl={lnurl}
showLnQr={true}
/>
</div>
</div>
<div className="main-content">

View File

@ -56,12 +56,13 @@ export function ProfileNotesTab({ id, relays, isMe }: { id: HexKey; relays?: Arr
const pinned = usePinList(id);
const options = useMemo(() => ({ showTime: false, showPinned: true, canUnpin: isMe }), [isMe]);
const subject = useMemo(
() => ({
type: "pubkey",
items: [id],
discriminator: id.slice(0, 12),
relay: relays,
} as TimelineSubject),
() =>
({
type: "pubkey",
items: [id],
discriminator: id.slice(0, 12),
relay: relays,
}) as TimelineSubject,
[id, relays],
);
return (

View File

@ -60,9 +60,13 @@ async function initSite() {
updateRelayConnections(System, login.relays.item).catch(console.error);
setupWebLNWalletConfig(Wallets);
Relay.query(["REQ", "preload-social-graph", {
kinds: [3]
}]).then(res => {
Relay.query([
"REQ",
"preload-social-graph",
{
kinds: [3],
},
]).then(res => {
for (const ev of res) {
try {
socialGraphInstance.handleEvent(ev);

View File

@ -59,4 +59,4 @@ export async function fetchProfile(key: string) {
} catch (e) {
console.error(e);
}
}
}

View File

@ -66,7 +66,11 @@ export function splitAllByWriteRelays(cache: AuthorsRelaysCache, filters: Array<
/**
* Split filters by authors
*/
export function splitByWriteRelays(cache: AuthorsRelaysCache, filter: ReqFilter, pickN?: number): Array<RelayTaggedFilter> {
export function splitByWriteRelays(
cache: AuthorsRelaysCache,
filter: ReqFilter,
pickN?: number,
): Array<RelayTaggedFilter> {
const authors = filter.authors;
if ((authors?.length ?? 0) === 0) {
return [