Update AppImage

This commit is contained in:
MacRimi
2025-10-07 11:10:20 +02:00
parent e247d8095e
commit e81438e49f
2 changed files with 10 additions and 5 deletions

View File

@@ -383,6 +383,7 @@ export default function Hardware() {
<Dialog
open={loadingGPUData}
onOpenChange={() => {
// Prevent closing while loading
if (!loadingGPUData) {
setSelectedGPU(null)
setRealtimeGPUData(null)
@@ -404,7 +405,7 @@ export default function Hardware() {
</Dialog>
<Dialog
open={selectedGPU !== null && !loadingGPUData}
open={selectedGPU !== null && !loadingGPUData && realtimeGPUData !== null}
onOpenChange={() => {
setSelectedGPU(null)
setRealtimeGPUData(null)