hanko
hanko copied to clipboard
Correcting user type
When doing :
const hanko = useHanko();
const user = await hanko?.user.getCurrent();
The user type is defined as follows:
user = {
email,
id,
webauthn_credentials[]
}
This lacks two elements that are quite useful: updated_at and created_at
Could we add those?
Thanks!