Skip to content

Commit

Permalink
Merge branch 'shayan/update-notifications-and-tooltips-components' of…
Browse files Browse the repository at this point in the history
… github.com:deriv-com/ui into shayan/update-notifications-and-tooltips-components
  • Loading branch information
shayan-deriv committed May 30, 2024
2 parents 5f12906 + de7722e commit 00da4c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/AppLayout/Notifications/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/components/AppLayout/TooltipMenuIcon/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type TTooltipMenuIcon<T extends AsElement> = ComponentProps<T> & {
tooltipPosition?: "top" | "bottom" | "left" | "right";
tooltipColor?: string;
disableHover?: boolean;
tooltipClassName?: string;
tooltipContainerClassName?: string;
};

/**
Expand Down

0 comments on commit 00da4c5

Please sign in to comment.