fix(onboarding): fix widget links, isComplete logic, and event slugs
Some checks failed
Test / vitest (push) Successful in 10m44s
Test / playwright (push) Failing after 9m15s
Test / visual (push) Failing after 9m7s
Test / Notify on failure (push) Successful in 2s

Use dynamic href for external links, check completedAt for graduation,
link events by slug instead of _id, and remove stale click handler.
This commit is contained in:
Jennie Robinson Faber 2026-04-09 23:52:04 +01:00
parent 50a358b294
commit e791a0d480
3 changed files with 8 additions and 8 deletions

View file

@ -233,7 +233,7 @@ describe('useOnboarding', () => {
})
expect(currentSuggestion.value.key).toBe('wiki')
expect(currentSuggestion.value.action).toBeNull()
expect(currentSuggestion.value.action).toBe('https://wiki.ghostguild.org')
expect(currentSuggestion.value.isExternal).toBe(true)
})