diff --git a/compass/app/auth/forgot_password/page.tsx b/compass/app/auth/forgot_password/page.tsx
index e12f6b2..3401b20 100644
--- a/compass/app/auth/forgot_password/page.tsx
+++ b/compass/app/auth/forgot_password/page.tsx
@@ -1,5 +1,5 @@
"use client"
-import Button from '@/components/Button49';
+import Button from '@/components/Button';
import Input from '@/components/Input'
import InlineLink from '@/components/InlineLink';
import Paper from '@/components/auth/Paper';
@@ -41,10 +41,10 @@ export default function Page() {
title="Enter your email address"
placeholder="janedoe@gmail.com"
value={confirmEmail}
- iconKey={'EmailInputIcon'}
+ icon={'EmailInputIcon'}
onChange={(e) => {
setconfirmEmail(e.target.value);
- setEmailError(''); // Reset the error when the user types
+ // setEmailError(''); // Reset the error when the user types
}}/>
{emailError && (
diff --git a/compass/app/auth/newPassword/page.tsx b/compass/app/auth/newPassword/page.tsx
index 6b4aaef..96e4603 100644
--- a/compass/app/auth/newPassword/page.tsx
+++ b/compass/app/auth/newPassword/page.tsx
@@ -2,7 +2,7 @@
"use client";
import { useState, useEffect } from 'react';
import Button from '@/components/Button1';
-import Input from '@/components/Input1';
+import Input from '@/components/Input';
import Paper from '@/components/auth/Paper';
diff --git a/compass/app/page.tsx b/compass/app/page.tsx
index 56bb65b..1587bc0 100644
--- a/compass/app/page.tsx
+++ b/compass/app/page.tsx
@@ -1,7 +1,7 @@
// pages/index.tsx
"use client";
-import Button from '@/components/Button49';
+// import Button from '@/components/Button49';
import Button from '@/components/Button1';
import Input from '@/components/Input'
import InlineLink from '@/components/InlineLink';
@@ -54,7 +54,7 @@ export default function Page() {
/>