Merge pull request #5957 from freesewing/joost
fix(org): Off-by-one error, closes #5933
This commit is contained in:
commit
87ff2fc046
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue