Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lazerblasters committed Jun 4, 2021
1 parent c1a5cdf commit 0d8860f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/integrations/JIRA/hooks/useJIRAComponents.hook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,11 @@ export const useJIRAComponents = () => {
}, [pg]);

useEffect(() => {
console.log(projectRequestError, issueTypeRequestError, !projectRequestError && !issueTypeRequestError);
console.log(
projectRequestError,
issueTypeRequestError,
!projectRequestError && !issueTypeRequestError
);
if (!projectRequestError && !issueTypeRequestError) return;
setPg(0);
}, [projectRequestError, issueTypeRequestError]);
Expand Down

0 comments on commit 0d8860f

Please sign in to comment.