GdprBanner: fix inverted shown logic

This commit is contained in:
Alex Gleason 2023-11-14 16:51:33 -06:00
parent f56abb22a1
commit 948dbcaa49
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -22,7 +22,7 @@ const GdprBanner: React.FC = () => {
setTimeout(() => setShown(true), 200); setTimeout(() => setShown(true), 200);
}; };
if (!shown) { if (shown) {
return null; return null;
} }