Skip to content

Commit

Permalink
Update login.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
BurhanCantCode authored Aug 3, 2024
1 parent c77b08b commit 6f8a586
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { useState } from 'react';
import { useProducts } from '../hooks/useProducts';
import ImageCapture from '../components/ImageCapture';
import { scanProduct } from '../utils/visionUtils';
import PasswordReset from '../components/PasswordReset';

const Login: NextPage = () => {
const { user, redirectAfterAuth } = useAuth();
Expand Down Expand Up @@ -37,9 +38,10 @@ const Login: NextPage = () => {
Sign in to manage your pantry, reduce waste, and never run out of essentials.
</Typography>
<AuthModal />
<PasswordReset />
</Paper>
</Box>
);
};

export default Login;
export default Login;

0 comments on commit 6f8a586

Please sign in to comment.