Skip to content

Commit

Permalink
fix: simulate refreshPassport failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Meriem-BM committed Jul 23, 2024
1 parent 622316f commit be87617
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/services/passport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export const fetchPassportScore = async (account: string) => {
variables: {
address: account?.toLowerCase(),
},
fetchPolicy: 'network-only',
// TODO - Change this to back to network-only once a test case is done by QA
fetchPolicy: 'cache-and-network',
});
return data;
} catch (error) {
Expand Down

0 comments on commit be87617

Please sign in to comment.