Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Revert "Update src/hooks/useCreateGQLClient/index.ts"
Browse files Browse the repository at this point in the history
This reverts commit 6213cdb.
  • Loading branch information
SupaJoon committed Mar 22, 2024
1 parent 0ca3c12 commit 8f11711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useCreateGQLClient/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const useCreateGQLCLient = (): ApolloClient<NormalizedCacheObject> => {
const [gqlClient, setGQLClient] = useState<any>();

useEffect(() => {
fetchWithRetry<SecretFieldsQuery>(getGQLUrl(), secretFieldsReq)
fetchWithRetry(getGQLUrl(), secretFieldsReq)
.then(({ data }) => {
dispatchAuthenticated();
setSecretFields(data?.spruceConfig?.secretFields);
Expand Down

0 comments on commit 8f11711

Please sign in to comment.