Skip to content

Commit

Permalink
chore(app): fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed Jan 24, 2025
1 parent 8553ad1 commit 85c7df9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/src/lib/components/TransferFrom/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ rawIntents.subscribe(async () => {
if (quoteToken.isErr()) {
transferArgs.set(null)
return;
return
}
if (quoteToken.value.type === "NO_QUOTE_AVAILABLE") {
transferArgs.set("NO_QUOTE_AVAILABLE")
return;
return
}
const receiver =
Expand All @@ -86,7 +86,6 @@ rawIntents.subscribe(async () => {
? fromHex(`0x${$channel.source_port_id}`, "string")
: `0x${$channel.source_port_id}`
transferArgs.set({
baseToken,
baseAmount: BigInt($rawIntents.amount),
Expand Down

0 comments on commit 85c7df9

Please sign in to comment.