Compare commits

..

4 Commits

Author SHA1 Message Date
OFF0 318633fa41
relays: remove noisy eose console log
ci/woodpecker/push/woodpecker Pipeline was successful Details
1 year ago
OFF0 d11e986b39
links: remove trailing slash in link text
due to URL formatting, the link text of https://example.com was
showing as example.com/

removed trailing slash if possible.
1 year ago
OFF0 dab9efa86c
styling: update button styling
adding proper primary and secondary button styles.
1 year ago
OFF0 990d0cbe8a
contact: show timeline of only followed contacts
added home and global feed, home will try to show timeline with
all followed contacts and fallback to global if there are no
followees.

in a future commit global tab could become search and have a
search field at the top.
1 year ago

@ -50,7 +50,7 @@ const subscribe = (
});
if (unsub) {
sub.on('eose', () => {
console.log('eose', relay.url);
// console.log('eose', relay.url);
unsubscribe(sub);
});
}
@ -69,7 +69,7 @@ export const subOnce = (
if (relay) {
const sub = subscribe(obj.cb, obj.filter, relay);
sub.on('eose', () => {
console.log('eose', obj.relay);
// console.log('eose', obj.relay);
unsubscribe(sub);
});
}

Loading…
Cancel
Save