Update AppImage

This commit is contained in:
MacRimi
2025-10-06 17:40:42 +02:00
parent 810ac1fcfa
commit e427f37f0e
3 changed files with 157 additions and 84 deletions

View File

@@ -1,6 +1,6 @@
import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "@/components/ui/card"
import { Cpu } from "@/components/icons/cpu" // Added import for Cpu
import type { PCIDevice } from "@/types/pcidevice" // Added import for PCIDevice
import type { PCIDevice } from "../types/hardware" // Fixed import to use relative path instead of alias
import { Progress } from "@/components/ui/progress"
function GPUCard({ device }: { device: PCIDevice }) {

View File

@@ -20,7 +20,7 @@ import {
} from "lucide-react"
import useSWR from "swr"
import { useState } from "react"
import { type HardwareData, fetcher } from "@/types/hardware"
import { type HardwareData, fetcher } from "../types/hardware"
const getDeviceTypeColor = (type: string): string => {
const lowerType = type.toLowerCase()