Merge branch 'gdpr-shown' into 'main'

GdprBanner: fix inverted `shown` logic

See merge request soapbox-pub/soapbox!2858
This commit is contained in:
Alex Gleason 2023-11-14 22:52:13 +00:00
commit 604b4397dc
1 changed files with 1 additions and 1 deletions

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;
} }