GdprBanner: fix inverted shown
logic
This commit is contained in:
parent
f56abb22a1
commit
948dbcaa49
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue