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:
@@ -19,6 +19,7 @@ export {
|
|||||||
export const initSyncState = async (): Promise<void> => {
|
export const initSyncState = async (): Promise<void> => {
|
||||||
try {
|
try {
|
||||||
// 동기화 설정 초기화
|
// 동기화 설정 초기화
|
||||||
|
const { initSyncSettings } = await import('./sync/config');
|
||||||
initSyncSettings();
|
initSyncSettings();
|
||||||
console.log('동기화 설정 초기화 완료');
|
console.log('동기화 설정 초기화 완료');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user