Skip to content

Commit caa72a9

Browse files
committed
AG-34919 show cant connect message on the global error screen
Merge in EXTENSIONS/vpn-extension from fix/AG-34919 to master Squashed commit of the following: commit 9a55f27 Author: Maxim Topciu <[email protected]> Date: Fri Aug 2 19:10:26 2024 +0300 AG-34919 show cant connect message on the global error screen
1 parent ddc892b commit caa72a9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/popup/components/App/App.tsx

+7
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,13 @@ export const App = observer(() => {
218218
<>
219219
{isOpenOptionsModal && <ExtraOptions />}
220220
<Header showMenuButton={showMenuButton} />
221+
{
222+
// do not show the warning for users on linux AG-27487
223+
hasDesktopAppForOs
224+
// do not show the warning if there is a limited offer active
225+
&& !isLimitedOfferActive
226+
&& <VpnBlockedError />
227+
}
221228
<Icons />
222229
<GlobalError />
223230
<ServerErrorPopup />

0 commit comments

Comments
 (0)