bug: disable only nostr embed element

This commit is contained in:
Kieran 2023-04-05 18:09:25 +01:00
parent 9f304a0db8
commit 87165cf0d6
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 2 additions and 2 deletions

View File

@ -143,12 +143,12 @@ export default function HyperText({ link, creator }: { link: string; creator: He
return <TwitchEmbed link={a} />;
} else if (isAppleMusicLink) {
return <AppleMusicEmbed link={a} />;
} else if (isNostrNestsLink && false) {
} else if (isNostrNestsLink) {
return [
<a href={a} onClick={e => e.stopPropagation()} target="_blank" rel="noreferrer" className="ext">
{a}
</a>,
<NostrNestsEmbed link={a} />,
/*<NostrNestsEmbed link={a} />,*/
];
} else if (isWavlakeLink) {
return <WavlakeEmbed link={a} />;