실시간 차트 알림표시 위치 아이콘 버튼

This commit is contained in:
Macbook
2026-06-12 22:06:22 +09:00
parent 6118230471
commit 65fe1404b8
6 changed files with 47 additions and 32 deletions
@@ -51,10 +51,8 @@ import Toolbar, { type ToolbarProps } from './Toolbar';
export const ChartToolbarNotify: React.FC<ToolbarProps & {
onOpenNotifyList: () => void;
onOpenAppDownload?: () => void;
}> = ({
onOpenNotifyList,
onOpenAppDownload,
...toolbarProps
}) => {
const { unreadCount } = useTradeNotification();
@@ -63,7 +61,6 @@ export const ChartToolbarNotify: React.FC<ToolbarProps & {
{...toolbarProps}
tradeNotifyUnread={unreadCount}
onOpenTradeNotifications={onOpenNotifyList}
onOpenAppDownload={onOpenAppDownload}
/>
);
};