Compare commits

..

3 Commits

Author SHA1 Message Date
OFF0 4cbe6f6cde
links: remove trailing slash in link text
ci/woodpecker/push/woodpecker Pipeline was successful Details
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 83248e803f
styling: update button styling
adding proper primary and secondary button styles.
1 year ago
OFF0 9fe697f2b7
contact: show timeline of only followed contacts
added global link in main nav for showing global feed.

in a future commit global tab will become search.
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