From e814be9d44dd787b5304a301cf099f22fd02d90e Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 4 Feb 2024 18:16:19 +0100 Subject: [PATCH] fix(org): Off-by-one error, closes #5933 --- sites/shared/components/account/username.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/shared/components/account/username.mjs b/sites/shared/components/account/username.mjs index 36349e980d3..2bbd2376bcd 100644 --- a/sites/shared/components/account/username.mjs +++ b/sites/shared/components/account/username.mjs @@ -42,7 +42,7 @@ export const UsernameSettings = ({ welcome = false }) => { } const nextHref = - welcomeSteps[account.control].length > 4 + welcomeSteps[account.control].length > 5 ? '/welcome/' + welcomeSteps[account.control][5] : '/docs/about/guide'