UNPKG

@better-auth-ui/core

Version:

Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.

13 lines (12 loc) 455 B
/** * Mutation keys contributed by the Google One Tap UI plugin. * * The ambient prompt intentionally lives outside the shared * `["auth", "signIn"]` namespace. Google can keep the prompt open or retry it * for several seconds, and that background work must not disable the regular * sign-in form. */ export const oneTapMutationKeys = { /** Key for opening the Google One Tap prompt. */ prompt: ["auth", "oneTap", "prompt"] as const } as const