Skip to content

Commit 18d6486

Browse files
authored
fix(onboarding): Add missing useEffect dependency (#49105)
This adds a missing dependency to the `useEffect` hook used in the `Onboarding` component, to keep the linter from complaining and blocking pre-commit hooks when unrelated changes are made to the file.
1 parent 86637ec commit 18d6486

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

static/app/views/onboarding/onboarding.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ function Onboarding(props: Props) {
135135
onboardingContext,
136136
onboardingSteps,
137137
organization.slug,
138+
props.location.pathname,
138139
]);
139140

140141
const heartbeatFooter = !!organization?.features.includes(

0 commit comments

Comments
 (0)