remove wildcard

This commit is contained in:
Sam Samskies 2023-02-28 23:56:49 -06:00
parent b717296217
commit 2e4b41d84e
No known key found for this signature in database
GPG Key ID: E3F697EE1B6EB156

View File

@ -1,5 +1,5 @@
const NostrNestsEmbed = ({ link }: { link: string }) => (
<iframe src={link} allow="microphone *;" width="480" height="680" style={{ maxHeight: 680 }}></iframe>
<iframe src={link} allow="microphone" width="480" height="680" style={{ maxHeight: 680 }}></iframe>
);
export default NostrNestsEmbed;