fix: flex fixes

This commit is contained in:
Kieran 2023-10-17 16:33:21 +01:00
parent 0548e1a9e1
commit 3f82b31b6b
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
3 changed files with 4 additions and 4 deletions

View File

@ -95,7 +95,7 @@ const Timeline = (props: TimelineProps) => {
{!inView && (
<div className="card latest-notes latest-notes-fixed pointer fade-in" onClick={() => onShowLatest(true)}>
{latestAuthors.slice(0, 3).map(p => {
return <ProfileImage pubkey={p} showUsername={false} link={""} />;
return <ProfileImage pubkey={p} showUsername={false} link={""} showProfileCard={false} />;
})}
<FormattedMessage
defaultMessage="{n} new {n, plural, =1 {note} other {notes}}"

View File

@ -55,7 +55,7 @@ export default function useLoginFeed() {
if (CONFIG.features.subscriptions && !login.readonly) {
b.withFilter().authors([pubKey]).kinds([EventKind.AppData]).tag("d", ["snort"]);
b.withFilter()
.relay("wss://relay.snort.social")
.relay("wss://relay.snort.social/")
.kinds([EventKind.SnortSubscriptions])
.authors([bech32ToHex(SnortPubKey)])
.tag("p", [pubKey])

View File

@ -208,8 +208,8 @@ function LogoHeader() {
<Link to="/" className="logo">
<h1>{CONFIG.appName}</h1>
{currentSubscription && (
<small className="flex">
<Icon name="diamond" size={10} className="mr5" />
<small className="flex items-center g4">
<Icon name="diamond" size={10} />
{mapPlanName(currentSubscription.type)}
</small>
)}