Skip to content

Commit 7f40975

Browse files
jhlee0409claude
andcommitted
fix: update checking notification not dismissing properly
When user clicks X button on update checking notification, also clear the manualCheckRef flag to prevent notification from reappearing after check completes. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f7a8c0e commit 7f40975

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "claude-code-history-viewer",
33
"private": true,
4-
"version": "1.2.2",
4+
"version": "1.2.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "claude-code-history-viewer"
3-
version = "1.2.2"
3+
version = "1.2.3"
44
description = "Claude Code 대화 기록을 탐색하고 분석하는 데스크톱 애플리케이션"
55
authors = ["JaeHyeok Lee"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Claude Code History Viewer",
4-
"version": "1.2.2",
4+
"version": "1.2.3",
55
"identifier": "com.claude.history-viewer",
66
"build": {
77
"frontendDist": "../dist",

src/components/SimpleUpdateManager.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ export function SimpleUpdateManager() {
8181

8282
{/* 체크 중 알림 (수동 체크 시) */}
8383
<UpdateCheckingNotification
84-
onClose={() => setShowChecking(false)}
84+
onClose={() => {
85+
setShowChecking(false);
86+
manualCheckRef.current = false; // X 클릭 시 수동 체크 플래그 해제
87+
}}
8588
isVisible={showChecking}
8689
/>
8790

0 commit comments

Comments
 (0)