style: run biome lint

This commit is contained in:
Aarnav Tale 2024-12-31 10:31:50 +05:30
parent aa9872a45b
commit f3c9d8b54c
No known key found for this signature in database
39 changed files with 57 additions and 57 deletions

View file

@ -4,7 +4,7 @@ import { Link } from 'react-router';
import Menu from '~/components/Menu';
import StatusCircle from '~/components/StatusCircle';
import { toast } from '~/components/Toaster';
import { Machine, Route, User } from '~/types';
import type { Machine, Route, User } from '~/types';
import { cn } from '~/utils/cn';
import MenuOptions from './menu';
@ -30,7 +30,7 @@ export default function MachineRow({ machine, routes, magic, users }: Props) {
tags.unshift('Expired');
}
let prefix = magic?.startsWith('[user]')
const prefix = magic?.startsWith('[user]')
? magic.replace('[user]', machine.user.name)
: magic;