Merge master into ishan/fix-activity-clerkprovider

This commit is contained in:
abhi1693
2026-02-07 15:12:00 +00:00
175 changed files with 12588 additions and 3703 deletions

View File

@@ -43,7 +43,9 @@ export function SignInButton(props: ComponentProps<typeof ClerkSignInButton>) {
return <ClerkSignInButton {...props} />;
}
export function SignOutButton(props: ComponentProps<typeof ClerkSignOutButton>) {
export function SignOutButton(
props: ComponentProps<typeof ClerkSignOutButton>,
) {
if (!isClerkEnabled()) return null;
return <ClerkSignOutButton {...props} />;
}