fix(desktop): Payple 배포 완료 + billing URL 환경분기 + 세션만료 버그 수정

- OPEN_BILLING: app.isPackaged 기반 dev/prod URL 분기
- CloudSyncService: stored token 없을 때 auth-changed null emit 누락 수정
- Payple Edge Functions 3개 배포 ACTIVE 확인
This commit is contained in:
윤찬 2026-04-12 19:31:02 +09:00
parent ad058fbd4d
commit 68881bf0d0
3 changed files with 29 additions and 7 deletions

View file

@ -130,6 +130,9 @@ class CloudSyncService extends EventEmitter {
})
this.emit('auth-changed', { user: null })
}
} else {
// 저장된 토큰 없음 → 미인증 상태를 렌더러에 명시 전달
this.emit('auth-changed', { user: null })
}
logger.info('CloudSyncService initialized')