From b2e45ccafba9849d63e38c0845166f4270e0116f Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 19 Jan 2022 12:08:44 -0300 Subject: [PATCH] [FIX] clipboard check only for desktop --- src/pages/tabs/tabs.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/tabs/tabs.ts b/src/pages/tabs/tabs.ts index fdc0a5690d2..87df068a611 100644 --- a/src/pages/tabs/tabs.ts +++ b/src/pages/tabs/tabs.ts @@ -171,7 +171,9 @@ export class TabsPage { }); this.checkCardEnabled(); - this.checkClipboardData(); + if (this.platformProvider.isElectron) { + this.checkClipboardData(); + } this.tabProvider.prefetchGiftCards(); }