fix: google not accepting width as string

This commit is contained in:
Dakshesh Jain 2023-07-28 19:21:55 +05:30
parent 865698bcb4
commit f40eb1add1
2 changed files with 17 additions and 13 deletions

View File

@ -20,17 +20,21 @@ export const GoogleLoginButton: FC<IGoogleLoginButton> = ({ handleSignIn }) => {
callback: handleSignIn, callback: handleSignIn,
}); });
window?.google?.accounts.id.renderButton( try {
googleSignInButton.current, window?.google?.accounts.id.renderButton(
{ googleSignInButton.current,
type: "standard", {
theme: "outline", type: "standard",
size: "large", theme: "outline",
logo_alignment: "center", size: "large",
width: "360", logo_alignment: "center",
text: "signin_with", width: 360,
} as GsiButtonConfiguration // customization attributes text: "signin_with",
); } as GsiButtonConfiguration // customization attributes
);
} catch (err) {
console.log(err);
}
window?.google?.accounts.id.prompt(); // also display the One Tap dialog window?.google?.accounts.id.prompt(); // also display the One Tap dialog
@ -50,7 +54,7 @@ export const GoogleLoginButton: FC<IGoogleLoginButton> = ({ handleSignIn }) => {
<> <>
<Script src="https://accounts.google.com/gsi/client" async defer onLoad={loadScript} /> <Script src="https://accounts.google.com/gsi/client" async defer onLoad={loadScript} />
<div <div
className="overflow-hidden rounded w-full flex justify-center items-center !text-sm !font-medium !text-custom-text-100" className="overflow-hidden rounded w-full"
id="googleSignInButton" id="googleSignInButton"
ref={googleSignInButton} ref={googleSignInButton}
/> />

View File

@ -37,7 +37,7 @@ interface GsiButtonConfiguration {
text?: "signin_with" | "signup_with" | "continue_with" | "signup_with"; text?: "signin_with" | "signup_with" | "continue_with" | "signup_with";
shape?: "rectangular" | "pill" | "circle" | "square"; shape?: "rectangular" | "pill" | "circle" | "square";
logo_alignment?: "left" | "center"; logo_alignment?: "left" | "center";
width?: string; width?: number;
local?: string; local?: string;
} }