Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/components/Facility/FacilityHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,11 @@ export const FacilityHome = ({ facilityId }: Props) => {
<TooltipComponent
content={facilityData?.facility_type}
side="right"
align="center"
sideOffset={4}
>
<h2
className="text-xs sm:text-sm md:text-base lg:text-base text-white/70"
className="text-xs sm:text-sm md:text-base lg:text-base text-white/70 inline-block"
data-cy="facility-type-card"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

data cy isn't needed, do remove.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Noted, will do it soon

data cy isn't needed, do remove.

>
{facilityData?.facility_type}
Expand Down