diff --git a/src/components/AppLayout/Notifications/types.ts b/src/components/AppLayout/Notifications/types.ts index b32cfa18..de517843 100644 --- a/src/components/AppLayout/Notifications/types.ts +++ b/src/components/AppLayout/Notifications/types.ts @@ -7,7 +7,7 @@ export type TNotificationObject = { buttonAction: () => void; actionText: string; }; -export type TNotificationsProps = ComponentProps<"div"> &{ +export type TNotificationsProps = ComponentProps<"div"> & { notifications: TNotificationObject[]; clearNotificationsCallback: () => void; setIsOpen: (state: boolean) => void; diff --git a/src/components/AppLayout/TooltipMenuIcon/index.tsx b/src/components/AppLayout/TooltipMenuIcon/index.tsx index 87b2ca14..727baae6 100644 --- a/src/components/AppLayout/TooltipMenuIcon/index.tsx +++ b/src/components/AppLayout/TooltipMenuIcon/index.tsx @@ -15,7 +15,7 @@ type TTooltipMenuIcon = ComponentProps & { tooltipPosition?: "top" | "bottom" | "left" | "right"; tooltipColor?: string; disableHover?: boolean; - tooltipClassName?: string; + tooltipContainerClassName?: string; }; /**