{
}
diff --git a/beszel/site/src/components/spinner.tsx b/beszel/site/src/components/spinner.tsx
index b66da08..8c677a9 100644
--- a/beszel/site/src/components/spinner.tsx
+++ b/beszel/site/src/components/spinner.tsx
@@ -1,12 +1,12 @@
-import { LoaderCircleIcon } from 'lucide-react'
-import { useTranslation } from 'react-i18next'
+import { LoaderCircleIcon } from "lucide-react"
+import { useTranslation } from "react-i18next"
export default function (props: { empty?: boolean }) {
const { t } = useTranslation()
return (
- {props.empty &&
{t('monitor.waiting_for')}
}
+ {props.empty &&
{t("monitor.waiting_for")}
}
)
}
diff --git a/beszel/site/src/components/systems-table/systems-table.tsx b/beszel/site/src/components/systems-table/systems-table.tsx
index 549ab78..daf7bdf 100644
--- a/beszel/site/src/components/systems-table/systems-table.tsx
+++ b/beszel/site/src/components/systems-table/systems-table.tsx
@@ -9,18 +9,11 @@ import {
getCoreRowModel,
useReactTable,
Column,
-} from '@tanstack/react-table'
+} from "@tanstack/react-table"
-import {
- Table,
- TableBody,
- TableCell,
- TableHead,
- TableHeader,
- TableRow,
-} from '@/components/ui/table'
+import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
-import { Button, buttonVariants } from '@/components/ui/button'
+import { Button, buttonVariants } from "@/components/ui/button"
import {
DropdownMenu,
@@ -28,7 +21,7 @@ import {
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuTrigger,
-} from '@/components/ui/dropdown-menu'
+} from "@/components/ui/dropdown-menu"
import {
AlertDialog,
@@ -40,9 +33,9 @@ import {
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
-} from '@/components/ui/alert-dialog'
+} from "@/components/ui/alert-dialog"
-import { SystemRecord } from '@/types'
+import { SystemRecord } from "@/types"
import {
MoreHorizontalIcon,
ArrowUpDownIcon,
@@ -55,15 +48,15 @@ import {
HardDriveIcon,
ServerIcon,
CpuIcon,
-} from 'lucide-react'
-import { useEffect, useMemo, useState } from 'react'
-import { $hubVersion, $systems, pb } from '@/lib/stores'
-import { useStore } from '@nanostores/react'
-import { cn, copyToClipboard, decimalString, isReadOnlyUser } from '@/lib/utils'
-import AlertsButton from '../alerts/alert-button'
-import { navigate } from '../router'
-import { EthernetIcon } from '../ui/icons'
-import { useTranslation } from 'react-i18next'
+} from "lucide-react"
+import { useEffect, useMemo, useState } from "react"
+import { $hubVersion, $systems, pb } from "@/lib/stores"
+import { useStore } from "@nanostores/react"
+import { cn, copyToClipboard, decimalString, isReadOnlyUser } from "@/lib/utils"
+import AlertsButton from "../alerts/alert-button"
+import { navigate } from "../router"
+import { EthernetIcon } from "../ui/icons"
+import { useTranslation } from "react-i18next"
function CellFormatter(info: CellContext
) {
const val = info.getValue() as number
@@ -73,8 +66,8 @@ function CellFormatter(info: CellContext) {
@@ -83,18 +76,9 @@ function CellFormatter(info: CellContext) {
)
}
-function sortableHeader(
- column: Column,
- name: string,
- Icon: any,
- hideSortIcon = false
-) {
+function sortableHeader(column: Column, name: string, Icon: any, hideSortIcon = false) {
return (
-