From e9d75306dfd790741812fb682f0070009032a7ac Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 12 Mar 2025 12:59:22 +0800 Subject: [PATCH] . --- apps/blogai/app/[locale]/auth/sign-in/oauth-signin.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/blogai/app/[locale]/auth/sign-in/oauth-signin.tsx b/apps/blogai/app/[locale]/auth/sign-in/oauth-signin.tsx index 4223d56..6cc45ca 100644 --- a/apps/blogai/app/[locale]/auth/sign-in/oauth-signin.tsx +++ b/apps/blogai/app/[locale]/auth/sign-in/oauth-signin.tsx @@ -1,13 +1,13 @@ "use client"; import { Loading } from "@/components/ui/loading"; -// import { GitHub, Google } from "@/components/ui/icons"; +import { GitHub, Google } from "@/components/ui/icons"; import { toast } from "@/components/ui/toaster"; -// import { useSignIn } from "@clerk/nextjs"; -//import type { OAuthStrategy } from "@clerk/types"; +import { useSignIn } from "@clerk/nextjs"; +import type { OAuthStrategy } from "@clerk/types"; import * as React from "react"; import { OAuthButton } from "../oauth-button"; -type OAuthStrategy = 'oauth_google' | 'oauth_github'; +//type OAuthStrategy = 'oauth_google' | 'oauth_github'; export function OAuthSignIn() { const [isLoading, setIsLoading] = React.useState(null);