Skip to content

Commit

Permalink
fix: remove session definition
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfromyeg committed Jan 8, 2024
1 parent 4302c3c commit aca3a69
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/src/components/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ type Stage =
| "processing"
| "videoDisplay";

interface Session {
countryCode: string;
phoneNumber: string;
// interface Session {
// countryCode: string;
// phoneNumber: string;

otpSession: string;
// otpSession: string;

token: string;
berealToken: string;
}
// token: string;
// berealToken: string;
// }

const Form: React.FC = () => {
const [error, setError] = useState<any | null>(null);
Expand Down

0 comments on commit aca3a69

Please sign in to comment.