We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12bafc1 + 22b6163 commit ac83c56Copy full SHA for ac83c56
src/service/AvatarService.js
@@ -16,7 +16,7 @@ export const fetchAvatarUrl = (email) => {
16
email,
17
})
18
19
- return Axios.get(url)
+ return Axios.get(url, { adapter: 'fetch', fetchOptions: { priority: 'low' } })
20
.then((resp) => resp.data)
21
.then((avatar) => {
22
if (avatar.isExternal) {
0 commit comments