Skip to content

Commit a970be8

Browse files
committed
fix: Fix blank promise in onboarding creation
1 parent 956d975 commit a970be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/shared/lib/contexts/onboarding/actions/initialiseOnboardingProfile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ export function initialiseOnboardingProfile(
2222

2323
const _newProfile = buildInitialOnboardingProfile(isDeveloperProfile)
2424
onboardingProfile.set(_newProfile)
25-
return new Promise(() => {}) // TODO(2.0) This is a temporal promise
25+
return Promise.resolve() // TODO(2.0) This is a temporal promise
2626
}

0 commit comments

Comments
 (0)