We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 153263b commit 8f409e2Copy full SHA for 8f409e2
gui/src/pages/onboarding/utils.ts
@@ -10,6 +10,7 @@ export type OnboardingStatus = "Started" | "Completed";
10
// If there is no value in local storage for "onboardingStatus",
11
// it implies that the user has not begun or completed onboarding.
12
export function shouldBeginOnboarding() {
13
+ // We used to use "onboardingComplete", but switched to "onboardingStatus"
14
const onboardingCompleteLegacyValue =
15
localStorage.getItem("onboardingComplete");
16
if (onboardingCompleteLegacyValue === "true") {
0 commit comments