Skip to content

Commit

Permalink
launcher: Fix typo in restart wallet modal (#3868)
Browse files Browse the repository at this point in the history
  • Loading branch information
amass01 authored Jun 8, 2023
1 parent ad7f350 commit 2b64cf0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ coverage/
.yarncache/
deps-graphs
modules/dex/libdexc/libdexc
.idea
2 changes: 1 addition & 1 deletion app/components/views/DexPage/EnablePage/EnablePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const EnablePage = () => {
<ResetNetworkButton
className="margin-top-m"
modalTitle={
<T id="dex.resetWalletRequired" m="Wallet reset required" />
<T id="dex.resetWalletRequired" m="Wallet restart required" />
}
buttonLabel={<T id="dex.enableButton" m="Enable DEX" />}
modalContent={
Expand Down
2 changes: 1 addition & 1 deletion test/unit/components/views/DexPage/DexPage.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ test("enable dex view", () => {
const enableBtn = getEnableBtn();
user.click(enableBtn);

expect(screen.getByText("Wallet reset required")).toBeInTheDocument();
expect(screen.getByText("Wallet restart required")).toBeInTheDocument();

// cancel first
user.click(getCancelBtn());
Expand Down

0 comments on commit 2b64cf0

Please sign in to comment.