"><img> to paste in an image
Hi Bryan,
Thank you for reaching out to us.
To remove the authentication check from Metronic React you just need to delete a statement below from src/app/routing/AppRoutes.tsx.
{currentUser ? (
<>
<Route path="/*" element={<PrivateRoutes />} />
<Route index element={<Navigate to="/dashboard" />} />
</>
) : (
<>
<Route path="auth/*" element={<AuthPage />} />
<Route path="*" element={<Navigate to="/auth" />} />
</>
)}