Skip to content

Commit

Permalink
fix(request): add missing useeffect dep causing breadcrumb misrendering
Browse files Browse the repository at this point in the history
  • Loading branch information
pl-buiquang committed Apr 27, 2024
1 parent 6967723 commit 861a21c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const CohortCreationBreadcrumbs: React.FC = () => {
}
}
}
}, [projects, requests])
}, [projects, requests, requestId, dispatch])

return (
<Grid container marginBottom={theme.spacing(2)}>
Expand Down

0 comments on commit 861a21c

Please sign in to comment.