Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbazan7 committed Jul 25, 2022
1 parent 1eebeb4 commit 5c068ab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/store/wallet/effects/send/send.ts
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,11 @@ export const publishAndSign =
try {
await removeTxp(wallet, txp);
} catch (removeTxpErr: any) {
dispatch(LogActions.error(`[publishAndSign] err - Could not delete payment proposal: ${removeTxpErr?.message}`));
dispatch(
LogActions.error(
`[publishAndSign] err - Could not delete payment proposal: ${removeTxpErr?.message}`,
),
);
}
reject(err);
}
Expand Down

0 comments on commit 5c068ab

Please sign in to comment.