fix: register setup-account route and correctly name component
All checks were successful
Build and Deploy / build-and-push (push) Successful in 1m5s

This commit is contained in:
Cauê Faleiros
2026-03-06 09:24:08 -03:00
parent 81083fadce
commit 3efb949605
2 changed files with 3 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ import { useNavigate, useLocation, Link } from 'react-router-dom';
import { Hexagon, Lock, ArrowRight, Loader2, CheckCircle2, AlertCircle, User } from 'lucide-react';
import { resetPassword } from '../services/dataService';
export const ResetPassword: React.FC = () => {
export const SetupAccount: React.FC = () => {
const navigate = useNavigate();
const location = useLocation();
const query = new URLSearchParams(location.search);