Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonator committed Jul 2, 2024
1 parent 56516a3 commit 6e61615
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/bridge/src/squid/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ export class SquidBridgeProvider implements BridgeProvider {
});
}

if (data.route.params.toToken.address.toLowerCase() !== toAsset.address.toLowerCase()) {
if (
data.route.params.toToken.address.toLowerCase() !==
toAsset.address.toLowerCase()
) {
throw new BridgeQuoteError({
bridgeId: SquidBridgeProvider.ID,
errorType: "UnsupportedQuoteError",
Expand Down

0 comments on commit 6e61615

Please sign in to comment.