Skip to content

Commit f122deb

Browse files
committed
fix: dont hide the banner if FundsModal isShowing
1 parent 6ce829e commit f122deb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/routes/AppContent/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,11 @@ const AppContent = () => {
110110
if (
111111
isAdvertiser &&
112112
isBuySellPage &&
113-
((!isDesktop && (queryString.modal === 'RadioGroupFilterModal' || !queryString.modal)) || isDesktop)
113+
((!isDesktop &&
114+
(queryString.modal === 'RadioGroupFilterModal' ||
115+
queryString.modal === 'FundsModal' ||
116+
!queryString.modal)) ||
117+
isDesktop)
114118
) {
115119
setShowFundsBanner(true);
116120
} else {

0 commit comments

Comments
 (0)