+
{style.icon}
-
{type === 'signup' ? 'Sign up with ' : 'Sign in with '}{style.name}
- {
{style.icon}
}
+
{type === 'sign-up' ? 'Sign up with ' : 'Sign in with '}{style.name}
);
diff --git a/packages/stack/src/components/oauth-group.tsx b/packages/stack/src/components/oauth-group.tsx
index 4a082f2b2..3716e87f1 100644
--- a/packages/stack/src/components/oauth-group.tsx
+++ b/packages/stack/src/components/oauth-group.tsx
@@ -8,7 +8,7 @@ export default function OAuthGroup({
type,
mockProject,
}: {
- type: 'signin' | 'signup',
+ type: 'sign-in' | 'sign-up',
mockProject?: ClientProjectJson,
}) {
const stackApp = useStackApp();