Skip to content

Commit 91bf606

Browse files
remove ad banner condition for all users
1 parent ed8c473 commit 91bf606

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/AdBanner.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ const AdBanner = ({ plan }) => {
2727
}, []);
2828

2929
// Return null if ads shouldn't be displayed
30-
if (plan === 'proPlus' || !mobileAdConsent || Platform.OS !== 'android') {
30+
if (
31+
// plan === 'proPlus' ||
32+
!mobileAdConsent || Platform.OS !== 'android') {
3133
return null;
3234
}
3335

0 commit comments

Comments
 (0)