테블릿 로딩 이슈 수정

This commit is contained in:
Macbook
2026-05-31 23:44:31 +09:00
parent a34b49c23a
commit 332019866a
7 changed files with 78 additions and 15 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ export async function syncStrategyTimeframesFromLayoutIfNeeded(
strategy?: StrategyDto | null,
): Promise<boolean> {
const strat = (await loadStrategy(strategyId)) ?? strategy ?? null;
if (!strat) return true;
if (!strat) return false;
const uiTfs = collectUiEvaluationTimeframes(strategyId, strat);
if (uiTfs.length === 0) return true;