Skip to content

Commit

Permalink
Fix babel not found issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmedbennaya committed Oct 2, 2024
1 parent 6ed151c commit b7222e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/Controllers/bookConsultationController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import asyncHandler from "express-async-handler";
import Consultation from "../Model/consultationModel.js";
import sendEmail from "../utils/sendEmail.js";
import sendEmail from "../Utils/sendEmail.js";

// @desc Book a consultation
// @route POST /api/book-consultation
Expand Down Expand Up @@ -42,7 +42,7 @@ We will get back to you shortly.
Best regards,
[Your Company Name]
`, // Replace [Your Company Name] with your actual company name
`,
});

res.status(201).json({
Expand Down

0 comments on commit b7222e1

Please sign in to comment.