전략편집기 화면접속 시 에러 수정
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user