Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cortisiko committed Aug 20, 2024
1 parent f847e51 commit 1080176
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 16 deletions.
12 changes: 5 additions & 7 deletions e2e/pages/Settings/AdvancedView.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class AdvancedSettingsView {
// Scroll to the element
await Gestures.scrollToElement(
this.ethSignSwitch,
this.scrollViewIdentifier
this.scrollViewIdentifier,
);

// Wait and tap the element
Expand All @@ -16,13 +16,13 @@ class AdvancedSettingsView {

get scrollViewIdentifier() {
return Matchers.getIdentifier(
AdvancedViewSelectorsIDs.ADVANCED_SETTINGS_SCROLLVIEW
AdvancedViewSelectorsIDs.ADVANCED_SETTINGS_SCROLLVIEW,
);
}

get showFiatOnTestnetsToggle() {
return Matchers.getElementByID(
AdvancedViewSelectorsIDs.SHOW_FIAT_ON_TESTNETS
AdvancedViewSelectorsIDs.SHOW_FIAT_ON_TESTNETS,
);
}

Expand All @@ -31,15 +31,13 @@ class AdvancedSettingsView {
}

async tapShowFiatOnTestnetsSwitch() {
await Gestures.waitAndTap(
this.showFiatOnTestnetsToggle
);
await Gestures.waitAndTap(this.showFiatOnTestnetsToggle);
}

async scrollToShowFiatOnTestnetsToggle() {
await Gestures.scrollToElement(
this.showFiatOnTestnetsToggle,
this.scrollViewIdentifier
this.scrollViewIdentifier,
);
}
}
Expand Down
11 changes: 2 additions & 9 deletions ios/MetaMask.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1531,11 +1531,8 @@
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
};
Expand Down Expand Up @@ -1579,11 +1576,7 @@
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand Down

0 comments on commit 1080176

Please sign in to comment.