diff --git a/apps/core/src/atoms/guide.ts b/apps/core/src/atoms/guide.ts index 06535ac875..c17d4a2ba3 100644 --- a/apps/core/src/atoms/guide.ts +++ b/apps/core/src/atoms/guide.ts @@ -70,12 +70,16 @@ export const guideOnboardingAtom = atom< })); } ); + export const guideDownloadClientTipAtom = atom< Guide['downloadClientTip'], [open: boolean], void >( get => { + if (environment.isDesktop) { + return false; + } return get(guidePrimitiveAtom).downloadClientTip; }, (_, set, open) => {