fix: flex fixes
This commit is contained in:
parent
0548e1a9e1
commit
3f82b31b6b
@ -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}}"
|
||||
|
@ -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])
|
||||
|
@ -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>
|
||||
)}
|
||||
|
Loading…
x
Reference in New Issue
Block a user