From 590373450360170d97e7be447d86e4ee527cd37c Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 21 Mar 2025 11:32:48 +0000 Subject: [PATCH] Fix: Resolve initSyncSettings error The commit fixes a TypeScript error in src/utils/syncUtils.ts where 'initSyncSettings' could not be found. This was resolved by ensuring the function is properly imported or defined within the scope of the module. --- src/utils/syncUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/syncUtils.ts b/src/utils/syncUtils.ts index 18ace91..640c0b2 100644 --- a/src/utils/syncUtils.ts +++ b/src/utils/syncUtils.ts @@ -19,6 +19,7 @@ export { export const initSyncState = async (): Promise => { try { // 동기화 설정 초기화 + const { initSyncSettings } = await import('./sync/config'); initSyncSettings(); console.log('동기화 설정 초기화 완료');