From 9a1bb5dbfbec4d3b2a6cab34e9ec4b7ec7f65938 Mon Sep 17 00:00:00 2001 From: Justin Domingue Date: Mon, 21 Jun 2021 08:10:00 -0700 Subject: [PATCH] Add missing semicolon in English source --- src/hooks/useSwapCallback.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useSwapCallback.ts b/src/hooks/useSwapCallback.ts index 40d5313049..dfab17d974 100644 --- a/src/hooks/useSwapCallback.ts +++ b/src/hooks/useSwapCallback.ts @@ -221,7 +221,7 @@ export function swapErrorToUserReadableMessage(error: any): string { default: if (reason?.indexOf('undefined is not an object') !== -1) { console.error(error, reason) - return t`An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note fee on transfer and rebase tokens are incompatible with Uniswap V3.` + return t`An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3.` } return t`Unknown error${ reason ? `: "${reason}"` : ''