Skip to content

Commit 86e6c3f

Browse files
committed
fix(app): re add asset
1 parent b4b3161 commit 86e6c3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/lib/components/TransferFrom/index.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import type {
2323
QuoteData
2424
} from "$lib/components/TransferFrom/transfer/types.ts"
2525
import { persisted } from "svelte-persisted-store"
26+
import {assets} from "$app/paths";
2627
2728
export let chains: Array<Chain>
2829
export let ucs03channels: Array<Ucs03Channel>
@@ -65,7 +66,7 @@ const quoteToken: Readable<Nullable<QuoteData>> = derived<
6566
return
6667
}
6768
68-
const cacheKey = `${$source}-${JSON.stringify(channel)}`
69+
const cacheKey = `${$source}-${JSON.stringify(channel)}-${$asset}`
6970
const cachedResult = get(quoteResults)[cacheKey] ?? null
7071
7172
if (cachedResult) {

0 commit comments

Comments
 (0)