DONE: fix error on pagination where it cannot redirect to next pages, add onboarding_completed_at for new registered user, move dashboard page design into modules folder

This commit is contained in:
ISMAIL MASSERAN
2026-07-06 11:08:32 +08:00
parent ac8f00175a
commit cc2492c3fc
23 changed files with 421 additions and 78 deletions
@@ -63,3 +63,8 @@ export async function updatePassword(payload: UpdatePasswordPayload): Promise<Up
const { data } = await api.put<UpdatePasswordResponse>('/v1/profile/password', payload)
return data
}
export async function completeOnboarding(): Promise<UpdateProfileResponse> {
const { data } = await api.post<UpdateProfileResponse>('/v1/profile/onboarding/complete')
return data
}