diff --git a/apps/web/pages/event-types/index.tsx b/apps/web/pages/event-types/index.tsx index efe643b9c6..4a911bc2fa 100644 --- a/apps/web/pages/event-types/index.tsx +++ b/apps/web/pages/event-types/index.tsx @@ -298,7 +298,7 @@ export const EventTypeList = ({ group, groupIndex, readOnly, types }: EventTypeL type="button" size="icon" color="minimal" - className={classNames(type.$disabled && " opacity-30")} + className={classNames(type.$disabled ? " opacity-30" : "group-hover:text-black")} StartIcon={Icon.FiLink} onClick={() => { showToast(t("link_copied"), "success"); @@ -313,7 +313,7 @@ export const EventTypeList = ({ group, groupIndex, readOnly, types }: EventTypeL type="button" size="icon" color="minimal" - className={classNames(type.$disabled && " opacity-30")} + className={classNames(type.$disabled ? " opacity-30" : "group-hover:text-black")} StartIcon={Icon.FiMoreHorizontal} />