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

View file

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