We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a81147 commit a62754cCopy full SHA for a62754c
app/providers/accounts/index.tsx
@@ -33,6 +33,8 @@ import { ParsedInfo } from '@validators/index';
33
import React from 'react';
34
import { create } from 'superstruct';
35
36
+import { getProxiedUri } from '@/app/features/metadata/utils';
37
+
38
import { HistoryProvider } from './history';
39
import { RewardsProvider } from './rewards';
40
import { TokensProvider } from './tokens';
@@ -451,7 +453,7 @@ const getMetaDataJSON = async (
451
453
};
452
454
455
try {
- fetch(uri)
456
+ fetch(getProxiedUri(uri))
457
.then(async _ => {
458
459
const data = await _.json();
0 commit comments