From f14a1a731573efb25605f525ef9f5f45da418527 Mon Sep 17 00:00:00 2001 From: jhan0121 Date: Tue, 10 Mar 2026 02:17:11 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=B5=9C=EC=B4=88=20=EB=A1=9C=EA=B7=B8?= =?UTF-8?q?=EC=9D=B8=20=EC=8B=9C,=20=EC=A3=BC=EA=B8=B0=20=EC=A0=95?= =?UTF-8?q?=EB=B3=B4=20=EC=A1=B0=ED=9A=8C=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/handlers/auth.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/handlers/auth.js b/src/handlers/auth.js index 5034a9d..efbdfda 100644 --- a/src/handlers/auth.js +++ b/src/handlers/auth.js @@ -8,6 +8,7 @@ import { STORAGE_KEYS } from '../config.js'; import { ERROR_CODES } from '../constants.js'; import { registerDevice, getDevices } from '../api.js'; import { setStorageData, clearStorage, validateStorageForAuth } from '../storage.js'; +import { handleLoadCycleOptions } from './cycle.js'; import { elements, showLoading, @@ -69,6 +70,7 @@ export async function handleCheckAuth() { elements.userEmail.textContent = result.email; showView('main'); + await handleLoadCycleOptions(); showMessage('인증이 완료되었습니다!', 'success'); } catch (error) { if (error.code === ERROR_CODES.UNAUTHORIZED) {