diff --git a/tauri-app/src/pages/Settings/SystemUpdate.tsx b/tauri-app/src/pages/Settings/SystemUpdate.tsx
index 23e3cd6..6b11d39 100644
--- a/tauri-app/src/pages/Settings/SystemUpdate.tsx
+++ b/tauri-app/src/pages/Settings/SystemUpdate.tsx
@@ -6,6 +6,7 @@
*/
import { useState } from 'react';
+import { useNavigation } from '../../contexts/NavigationContext';
import { check, type Update, type DownloadEvent } from '@tauri-apps/plugin-updater';
import { relaunch } from '@tauri-apps/plugin-process';
import '../ContentManagement/ContentManagement.css';
@@ -13,6 +14,7 @@ import '../ContentManagement/ContentManagement.css';
const CURRENT_VERSION = __APP_VERSION__;
export default function SystemUpdate() {
+ const { navigate } = useNavigation();
const [checking, setChecking] = useState(false);
const [checkResult, setCheckResult] = useState<'none' | 'latest' | 'available'>('none');
const [updateInfo, setUpdateInfo] = useState
(null);
@@ -107,6 +109,12 @@ export default function SystemUpdate() {
return (
+