Skip to content

Commit 69daa53

Browse files
committed
Fix(Code-Rabbit):Address coderabbit suggestion
-Remove the debug console.log -Fix the typo in tailwind class name -Add space between Dr and FirstName
1 parent e575f61 commit 69daa53

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

client/src/components/Patient/AppointmentDetails/PrescriptionSection.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,9 @@ const PrescriptionSection = ({ prescription, appointment }) => {
5555

5656
{/* Doctor Signature */}
5757
<div className="mt-6 sm:mt-8 pt-3 sm:pt-4 border-t border-gray-200 text-right">
58-
<p className='text-ls text-gray-500 m-0'>Dr.{appointment.doctorId.firstName}{appointment.doctorId.lastName}</p>
58+
<p className='text-sm text-gray-500 m-0'>Dr. {appointment.doctorId.firstName}{" "}{appointment.doctorId.lastName}</p>
5959
<div className="w-32 sm:w-40 h-px bg-gray-700 ml-auto mb-1"></div>
6060
<p className="text-xs text-gray-500 m-0">Doctor's Signature</p>
61-
{console.log(appointment)}
6261
</div>
6362
</div>
6463
</div>

0 commit comments

Comments
 (0)