File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
} from "@/components/ui/card" ;
9
9
import { Separator } from "@/components/ui/separator" ;
10
10
import { FormLink } from "./form-link" ;
11
- import { Social } from "./social " ;
11
+ import { Providers } from "./providers " ;
12
12
13
13
interface FormWrapperProps {
14
14
children : React . ReactNode ;
@@ -32,7 +32,7 @@ export function FormWrapper({
32
32
</ CardHeader >
33
33
{ showSocial && (
34
34
< CardContent >
35
- < Social />
35
+ < Providers />
36
36
< div className = "relative my-4" >
37
37
< Separator />
38
38
< span className = "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 bg-background px-2 text-xs text-muted-foreground" >
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { Loader2 } from "lucide-react";
6
6
import { signIn } from "next-auth/react" ;
7
7
import { useCallback , useTransition } from "react" ;
8
8
9
- export function Social ( ) {
9
+ export function Providers ( ) {
10
10
const [ isPending , startTransition ] = useTransition ( ) ;
11
11
12
12
const onClick = useCallback ( ( provider : "github" ) => {
You can’t perform that action at this time.
0 commit comments