Skip to content

Commit 8a09d40

Browse files
authored
Merge pull request #4007 from Emurgo/fix/YOEXT-1949
fix: swap orders image load
2 parents b82bdc8 + ff770e7 commit 8a09d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/yoroi-extension/app/coreUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function urlResolveForIpfsAndCorsproxy<T: ?string>(url: T): T {
3737
// $FlowIgnore
3838
return maybe(url, (u: string): string => u.startsWith('ipfs://')
3939
? u.replace('ipfs://', 'https://ipfs.io/ipfs/')
40-
: `https://corsproxy.io/?${u}`);
40+
: `https://corsproxy.io/?url=${u}`);
4141
}
4242

4343
/**

0 commit comments

Comments
 (0)