Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
UdaySagar-Git committed Aug 23, 2024
1 parent cc4b73c commit 54153b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/Components/Common/RichTextEditor/CameraCaptureModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const CameraCaptureModal = ({
/>
</div>
<div className="m-4">
<h1 className="text-xl text-black "> Camera</h1>
<h1 className="text-xl text-black"> Camera</h1>
</div>
</div>
}
Expand All @@ -95,7 +95,7 @@ const CameraCaptureModal = ({
</div>

{/* buttons for mobile screens */}
<div className="m-4 flex justify-evenly sm:hidden ">
<div className="m-4 flex justify-evenly sm:hidden">
<div>
{!previewImage ? (
<ButtonV2 onClick={handleSwitchCamera} className="m-2">
Expand Down Expand Up @@ -151,15 +151,15 @@ const CameraCaptureModal = ({
</div>
</div>
{/* buttons for laptop screens */}
<div className={`${isLaptopScreen ? " " : " hidden "}`}>
<div className={`${isLaptopScreen ? " " : "hidden"}`}>
<div className="m-4 flex lg:hidden">
<ButtonV2 onClick={handleSwitchCamera}>
<CareIcon icon="l-camera-change" className="text-lg" />
switch camera
</ButtonV2>
</div>

<div className="flex justify-end gap-2 p-4">
<div className="flex justify-end gap-2 p-4">
<div>
{!previewImage ? (
<>
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Facility/DoctorNoteReplyPreviewCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ const DoctorNoteReplyPreviewCard = ({
</div>
{cancelReply && (
<div
className="mr-2 cursor-pointer p-1 text-2xl"
className="mr-2 cursor-pointer p-1 text-2xl"
onClick={cancelReply}
>
<CareIcon
icon="l-times"
className="m-1 rounded-full bg-gray-500 p-1 text-white hover:bg-gray-600"
className="m-1 rounded-full bg-gray-500 p-1 text-white hover:bg-gray-600"
/>
</div>
)}
Expand Down

0 comments on commit 54153b8

Please sign in to comment.