-
-
setEmail(e.target.value)}
- placeholder="trader@example.com"
- required
+
+ setEmail(e.target.value)}
+ placeholder="trader@example.com"
+ required
/>
- {!isResetPassword && (
-
}
-
+
{!isResetPassword && (
-
- )}
-
- {!isSignUp && (
-
- )}
+
+ )}
+
+ {!isSignUp && (
+
+ )}
diff --git a/web/src/components/ResetPassword.tsx b/web/src/components/ResetPassword.tsx
index b01bea3..4c8f168 100644
--- a/web/src/components/ResetPassword.tsx
+++ b/web/src/components/ResetPassword.tsx
@@ -1,5 +1,6 @@
import { useState, useEffect } from 'react';
import { resetPlatformPassword } from '../lib/authSession';
+import { Button, Input } from './ui/Primitives';
export function ResetPassword() {
const [password, setPassword] = useState('');
@@ -44,13 +45,13 @@ export function ResetPassword() {