Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/content/docs/developer-tools/sdks/native/expo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ Note: The `<myapp://localhost:3000>` is used as an example of local URL Scheme,

## Token Utilities

All utility functions from `@kinde/js-utils` are available through `@kinde/expo/utils` and also through the `useKindeAuth` hook. This allows you to use these utilities directly in your Expo application.
A selection of utility functions are available.

*Expo 53+*: Import from `@kinde/expo/utils` and `useKindeAuth` hook
*Expo 51 and 52*: Import from `@kinde/js-utils` and `useKindeAuth` hook

```ts
import { getUserProfile, getFlag, getRoles } from "@kinde/expo/utils";
Expand Down