From 207d429025e70b46f596fb08f4da5e85370d97e4 Mon Sep 17 00:00:00 2001 From: Kang Ming Date: Tue, 6 Feb 2024 12:41:27 +0800 Subject: [PATCH] fix: remove data type --- src/lib/types.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lib/types.ts b/src/lib/types.ts index 188c2c975..38e7440c4 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -506,12 +506,6 @@ export type SignInWithPasswordCredentials = /** The user's password. */ password: string options?: { - /** - * A custom data object to store the user's metadata. This maps to the `auth.users.user_metadata` column. - * - * The `data` should be a JSON object that includes user-specific info, such as their first and last name. - */ - data?: object /** Verification token received when the user completes the captcha on the site. */ captchaToken?: string }