GdprBanner: fix inverted shown logic

This commit is contained in:
Alex Gleason
2023-11-14 16:51:33 -06:00
parent f56abb22a1
commit 948dbcaa49

View File

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