Skip to content

Commit

Permalink
fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
khavinshankar committed May 14, 2024
1 parent db9f703 commit edf7b22
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Components/Users/ManageUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export default function ManageUsers() {
aria-label="Online"
className={classNames(
"inline-block h-2 w-2 shrink-0 rounded-full",
cur_online ? "bg-primary-400" : "bg-gray-300"
cur_online ? "bg-primary-400" : "bg-gray-300",
)}
></span>
<span className="pl-2">
Expand Down Expand Up @@ -299,7 +299,7 @@ export default function ManageUsers() {
{dayjs().diff(
user.doctor_experience_commenced_on,
"years",
false
false,
)}{" "}
years
</span>
Expand Down Expand Up @@ -406,7 +406,7 @@ export default function ManageUsers() {
</ButtonV2>
</div>
{["DistrictAdmin", "StateAdmin"].includes(
authUser.user_type
authUser.user_type,
) && (
<div>
<ButtonV2
Expand Down Expand Up @@ -546,12 +546,12 @@ export default function ManageUsers() {
value(
"District",
"district",
qParams.district ? districtData?.name || "" : ""
qParams.district ? districtData?.name || "" : "",
),
value(
"Home Facility",
"home_facility",
qParams.home_facility ? homeFacilityData?.name || "" : ""
qParams.home_facility ? homeFacilityData?.name || "" : "",
),
]}
/>
Expand Down

0 comments on commit edf7b22

Please sign in to comment.