Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle committed Oct 1, 2023
1 parent c5052c3 commit db02df8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const { Title } = Typography;

const NotificationList: React.FC<NotificationListProps> = ({
notifications,
colorText,
isLoading,
isError,
handleRedFlagNotification,
Expand Down Expand Up @@ -106,7 +105,7 @@ const NotificationList: React.FC<NotificationListProps> = ({
showRedFlag ? style.notification__button__status : ""
}
></span>
<Icon name="Bell" size={20} color={colorText} />
<Icon name="Bell" size={20} />
</Button>
</Dropdown>
);
Expand Down
1 change: 0 additions & 1 deletion ui/src/components/General/Notification/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ interface Markdown {
interface NotificationListProps {
notifications: Markdown[] | undefined;
showRedFlag: boolean;
colorText: string;
isLoading: boolean;
isError: boolean;
handleRedFlagNotification: () => void;
Expand Down
3 changes: 3 additions & 0 deletions ui/src/components/Layouts/FloatingBar/FloatingBar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
align-items: center;
justify-content: flex-end;
flex-direction: row;
// background-color: transparent;
position: absolute;
right: 18px;

&__container {
right: var(--bt-size-10);
Expand Down

0 comments on commit db02df8

Please sign in to comment.