1
0
Fork 0

Merge pull request #5957 from freesewing/joost

fix(org): Off-by-one error, closes #5933
This commit is contained in:
Joost De Cock 2024-02-04 18:17:03 +01:00 committed by GitHub
commit 87ff2fc046
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,7 @@ export const UsernameSettings = ({ welcome = false }) => {
} }
const nextHref = const nextHref =
welcomeSteps[account.control].length > 4 welcomeSteps[account.control].length > 5
? '/welcome/' + welcomeSteps[account.control][5] ? '/welcome/' + welcomeSteps[account.control][5]
: '/docs/about/guide' : '/docs/about/guide'