feat: add onboarding parameter handling in EditBoardPage for improved user experience

This commit is contained in:
Abhimanyu Saharan
2026-02-06 20:23:17 +05:30
parent e934ab0d76
commit e786763250
2 changed files with 25 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ export default function NewBoardPage() {
mutation: {
onSuccess: (result) => {
if (result.status === 200) {
router.push(`/boards/${result.data.id}`);
router.push(`/boards/${result.data.id}/edit?onboarding=1`);
}
},
onError: (err) => {