Merge branch 'gdpr-shown' into 'main'
GdprBanner: fix inverted `shown` logic See merge request soapbox-pub/soapbox!2858
This commit is contained in:
commit
604b4397dc
|
@ -22,7 +22,7 @@ const GdprBanner: React.FC = () => {
|
||||||
setTimeout(() => setShown(true), 200);
|
setTimeout(() => setShown(true), 200);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!shown) {
|
if (shown) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue