fix: Windows updater — platform-specific reinstall hints for v0.1.1 pubkey error
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -9,6 +9,7 @@ import {
|
||||
type DesktopUpdatePhase,
|
||||
type DesktopUpdateProgress,
|
||||
} from '../utils/desktopBridge';
|
||||
import { isMacDesktop, isWindowsDesktop } from '../utils/platform';
|
||||
|
||||
interface Props {
|
||||
open: boolean;
|
||||
@@ -161,8 +162,22 @@ const DesktopUpdateModal: React.FC<Props> = ({ open, onClose, autoStart = true }
|
||||
|
||||
{phase === 'error' && (
|
||||
<p className="desktop-update-hint">
|
||||
자동 업데이트가 설정되지 않았을 수 있습니다. 웹 <strong>PC 프로그램</strong> 탭에서
|
||||
macOS는 dmg, Windows는 exe 설치 파일을 받아 다시 설치해 주세요.
|
||||
{isWindowsDesktop() ? (
|
||||
<>
|
||||
자동 업데이트가 설정되지 않았을 수 있습니다. 웹 <strong>PC 프로그램</strong> 탭에서
|
||||
<strong> exe</strong> 설치 파일을 받아 다시 설치해 주세요.
|
||||
</>
|
||||
) : isMacDesktop() ? (
|
||||
<>
|
||||
자동 업데이트가 설정되지 않았을 수 있습니다. 웹 <strong>PC 프로그램</strong> 탭에서
|
||||
<strong> dmg</strong>를 받아 Applications에 다시 설치해 주세요.
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
자동 업데이트가 설정되지 않았을 수 있습니다. 웹 <strong>PC 프로그램</strong> 탭에서
|
||||
macOS는 dmg, Windows는 exe 설치 파일을 받아 다시 설치해 주세요.
|
||||
</>
|
||||
)}
|
||||
</p>
|
||||
)}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user