Skip to content

Commit

Permalink
[FIX] clipboard check only for desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbazan7 committed Jan 19, 2022
1 parent da6930f commit b2e45cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/tabs/tabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ export class TabsPage {
});

this.checkCardEnabled();
this.checkClipboardData();
if (this.platformProvider.isElectron) {
this.checkClipboardData();
}
this.tabProvider.prefetchGiftCards();
}

Expand Down

0 comments on commit b2e45cc

Please sign in to comment.