전략편집기 화면접속 시 에러 수정

This commit is contained in:
Macbook
2026-05-31 23:36:33 +09:00
parent 2f5316d172
commit a34b49c23a
4 changed files with 96 additions and 29 deletions
+14
View File
@@ -0,0 +1,14 @@
import type { MenuPage } from '../components/TopMenuBar';
/** 실시간 ticker REST·WS가 필요한 메뉴 (전략편집기·설정 등 제외) */
export const TICKER_FEED_PAGES: ReadonlySet<MenuPage> = new Set([
'chart',
'paper',
'virtual',
'trend-search',
'notifications',
]);
export function isTickerFeedPage(page: MenuPage): boolean {
return TICKER_FEED_PAGES.has(page);
}