We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec02a03 commit 27e8a3bCopy full SHA for 27e8a3b
1 file changed
src/handlers/auth.js
@@ -8,6 +8,7 @@ import { STORAGE_KEYS } from '../config.js';
8
import { ERROR_CODES } from '../constants.js';
9
import { registerDevice, getDevices } from '../api.js';
10
import { setStorageData, clearStorage, validateStorageForAuth } from '../storage.js';
11
+import { handleLoadCycleOptions } from './cycle.js';
12
import {
13
elements,
14
showLoading,
@@ -69,6 +70,7 @@ export async function handleCheckAuth() {
69
70
71
elements.userEmail.textContent = result.email;
72
showView('main');
73
+ await handleLoadCycleOptions();
74
showMessage('인증이 완료되었습니다!', 'success');
75
} catch (error) {
76
if (error.code === ERROR_CODES.UNAUTHORIZED) {
0 commit comments