EmbeddedStatus: make it unclickable

This commit is contained in:
Alex Gleason 2022-08-12 13:31:05 -05:00
parent 5f8a22b452
commit ee754915aa
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -39,7 +39,7 @@ const EmbeddedStatus: React.FC<IEmbeddedStatus> = ({ params }) => {
}; };
return ( return (
<div className='bg-white dark:bg-gray-800'> <div className='bg-white dark:bg-gray-800 pointer-events-none'>
<div className='p-4 sm:p-6 max-w-3xl'> <div className='p-4 sm:p-6 max-w-3xl'>
{renderInner()} {renderInner()}
</div> </div>