Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hide-on-bush-x committed Mar 30, 2023
1 parent 5d9ddee commit 07a8d68
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -10,7 +10,7 @@ import { InterfaceErrorModal } from '../error-modal';
const errorMessages = {
UNPREDICTABLE_GAS_LIMIT:
'You do not have sufficient funds in you wallet. Please add funds to your wallet and try again',
ACTION_REJECTED: "Transaction rejected by the user."
ACTION_REJECTED: 'Transaction rejected by the user.',
};

export const InterfaceCreateSoulname = (): JSX.Element => {
Expand Down Expand Up @@ -180,7 +180,7 @@ export const InterfaceCreateSoulname = (): JSX.Element => {
}
} catch (error: unknown) {
if (error) {
console.log({error})
console.log({ error });
const errorObject = error as {
code: string;
message: string;
Expand Down

0 comments on commit 07a8d68

Please sign in to comment.