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.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-21 11:32:48 +00:00
parent 42c9bc4000
commit 5903734503

View File

@@ -19,6 +19,7 @@ export {
export const initSyncState = async (): Promise<void> => {
try {
// 동기화 설정 초기화
const { initSyncSettings } = await import('./sync/config');
initSyncSettings();
console.log('동기화 설정 초기화 완료');