Skip to content

Commit

Permalink
remove isMobile checks
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvoskamp committed May 8, 2024
1 parent ae6a7a9 commit 011c3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/scaffold/src/views/w3m-connect-view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class W3mConnectView extends LitElement {

private announcedTemplate() {
return this.connectors.map(connector => {
if (connector.type !== 'ANNOUNCED' || CoreHelperUtil.isMobile()) {
if (connector.type !== 'ANNOUNCED') {
return null
}

Expand All @@ -165,7 +165,7 @@ export class W3mConnectView extends LitElement {

private injectedTemplate() {
return this.connectors.map(connector => {
if (connector.type !== 'INJECTED' || CoreHelperUtil.isMobile()) {
if (connector.type !== 'INJECTED') {
return null
}

Expand Down

0 comments on commit 011c3f0

Please sign in to comment.