Got Apple Auth working

This commit is contained in:
2025-06-08 18:31:35 -05:00
parent c47c43dc92
commit 6a6c0934d5
4 changed files with 6 additions and 7 deletions

View File

@ -4,7 +4,7 @@ import { StatusMessage, SubmitButton } from '@/components/default';
import { useAuth } from '@/components/context/auth';
import { useState } from 'react';
import Image from 'next/image';
import { Button, type buttonVariants } from '@/components/ui';
import { type buttonVariants } from '@/components/ui';
import { type ComponentProps } from 'react';
import { type VariantProps } from 'class-variance-authority';
@ -61,7 +61,7 @@ export const SignInWithMicrosoft = ({
width={20}
height={20}
/>
<p className='text-[1.0rem]'>Sign in with Microsoft</p>
<p className='text-[1.0rem]'>Sign In with Microsoft</p>
</div>
</SubmitButton>
{statusMessage && <StatusMessage message={{ error: statusMessage }} />}