Skip to content

Commit

Permalink
Remove usage of the non-existing "arrow" class throughout the code
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamik10 committed Jan 3, 2024
1 parent e2e20c8 commit 27d34df
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const DashboardNotification: FC<DashboardNotificationProps> = ({
onClick={notificationClickEvent}
className="mb-16"
>
<div className="list-dashboard shadow-medium-hover arrow arrow__hover--right-small">
<div className="list-dashboard shadow-medium-hover arrow__hover--right-small">
<div
className={`color-secondary-gray number number--${notificationColor}`}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const SelectableMaterial: FC<SelectableMaterialProps & MaterialProps> = ({
};

return (
<li className="arrow arrow__hover--right-small">
<li className="arrow__hover--right-small">
<div
className={clsx("list-materials", {
"list-materials--disabled": disabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const StackableMaterial: FC<StackableMaterialProps & MaterialProps> = ({
return (
<div
className={clsx(
"list-reservation my-32 cursor-pointer arrow arrow__hover--right-small",
"list-reservation my-32 cursor-pointer arrow__hover--right-small",
{
"list-reservation--stacked": additionalMaterials > 0
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const ReservationMaterial: FC<ReservationMaterialProps & MaterialProps> = ({
return (
<li>
<div
className="list-reservation my-32 cursor-pointer arrow arrow__hover--right-small"
className="list-reservation my-32 cursor-pointer arrow__hover--right-small"
role="button"
onClick={() => openDetailsModal()}
onKeyUp={(e) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const CardListItem: React.FC<CardListItemProps> = ({
<article
ref={itemRef}
data-cy={dataCy}
className="card-list-item arrow arrow__hover--right-small"
className="card-list-item arrow__hover--right-small"
onClick={() => {
handleClick();
}}
Expand Down

0 comments on commit 27d34df

Please sign in to comment.