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:
Macbook
2026-06-14 12:26:28 +09:00
parent c0a23e4057
commit e658d9afe4
3 changed files with 32 additions and 2 deletions
+17 -2
View File
@@ -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>
)}