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
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ const GdprBanner: React.FC = () => {
|
|||
setTimeout(() => setShown(true), 200);
|
||||
};
|
||||
|
||||
if (!shown) {
|
||||
if (shown) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue