diff --git a/components/SigninButton.tsx b/components/SigninButton.tsx index 6c052de..92d120a 100644 --- a/components/SigninButton.tsx +++ b/components/SigninButton.tsx @@ -1,16 +1,18 @@ import { useAuth } from "@/context/AuthContext"; import React from "react"; import Button from "./form/Button"; -import GithubIcon from "./icons/GithubIcon"; +import GoogleIcon from "./icons/GoogleIcon"; const SigninButton = () => { - const { loginWithGithub } = useAuth(); + const { loginWithGoogle } = useAuth(); return ( - + <> + + ); }; diff --git a/components/editor/SnippngControlHeader.tsx b/components/editor/SnippngControlHeader.tsx index aab964a..cd1cb66 100644 --- a/components/editor/SnippngControlHeader.tsx +++ b/components/editor/SnippngControlHeader.tsx @@ -136,8 +136,12 @@ const SnippngControlHeader = () => {