Skip to main content

v0.2.6

nauth-toolkit team

Fixed

  • Social signup preserves empty-string name fields from the provider --- when Google, Facebook, or Apple returns an empty first or last name, the saved user now stores it as an empty string instead of treating it as missing. Applies to both web sign-in (OAuth callback) and mobile sign-in (native ID-token). Behavior is unchanged when the provider omits the field entirely
What the provider sendsStored beforeStored now
field omitted or nullmissingmissing
empty stringmissingempty string
a namethe namethe name

If your app uses a strict equality check against a missing value to detect "no name provided," switch to a falsy check so it handles both cases consistently.