Skip to content

Commit baddeae

Browse files
committed
fix: resend otp route
1 parent fab2e10 commit baddeae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/auth.routes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { apiLimiter } from '../utils/apiLimiter.utils.js';
1919
const router = Router();
2020

2121
router.post('/api/auth/signup', apiLimiter, signup);
22-
router.post('/api/auth/resendOTP/', apiLimiter, resendOTP);
22+
router.post('/api/auth/resendOTP', apiLimiter, resendOTP);
2323
router.post('/api/auth/verifyEmail', apiLimiter, verifyEmail);
2424
router.post('/api/auth/signin', apiLimiter, signin);
2525
router.post('/api/auth/forgotPassword', apiLimiter, forgotPassword);

0 commit comments

Comments
 (0)