date fixed
This commit is contained in:
@@ -99,11 +99,11 @@ export default function ClaimEditModal({
|
||||
<div className="mt-2 space-y-2">
|
||||
<p>
|
||||
<span className="text-gray-500">Date of Birth:</span>{" "}
|
||||
{new Date(claim.dateOfBirth).toLocaleDateString()}
|
||||
{formatDateToHumanReadable(claim.dateOfBirth)}
|
||||
</p>
|
||||
<p>
|
||||
<span className="text-gray-500">Service Date:</span>{" "}
|
||||
{new Date(claim.serviceDate).toLocaleDateString()}
|
||||
{formatDateToHumanReadable(claim.serviceDate)}
|
||||
</p>
|
||||
<div>
|
||||
<span className="text-gray-500">Status:</span>
|
||||
@@ -199,7 +199,7 @@ export default function ClaimEditModal({
|
||||
</p>
|
||||
<p>
|
||||
<span className="text-gray-500">Procedure Date:</span>{" "}
|
||||
{new Date(line.procedureDate).toLocaleDateString()}
|
||||
{formatDateToHumanReadable(line.procedureDate)}
|
||||
</p>
|
||||
{line.oralCavityArea && (
|
||||
<p>
|
||||
|
||||
Reference in New Issue
Block a user