refactor: lint

This commit is contained in:
Mauricio Siu
2025-01-16 22:24:31 -06:00
parent abff70f081
commit f70192a71c
4 changed files with 1581 additions and 1577 deletions

View File

@@ -53,7 +53,7 @@ export const ShowContainers = ({ serverId }: Props) => {
const [sorting, setSorting] = React.useState<SortingState>([]);
const [columnFilters, setColumnFilters] = React.useState<ColumnFiltersState>(
[]
[],
);
const [columnVisibility, setColumnVisibility] =
React.useState<VisibilityState>({});
@@ -163,7 +163,7 @@ export const ShowContainers = ({ serverId }: Props) => {
? null
: flexRender(
header.column.columnDef.header,
header.getContext()
header.getContext(),
)}
</TableHead>
);
@@ -182,7 +182,7 @@ export const ShowContainers = ({ serverId }: Props) => {
<TableCell key={cell.id}>
{flexRender(
cell.column.columnDef.cell,
cell.getContext()
cell.getContext(),
)}
</TableCell>
))}

View File

@@ -30,7 +30,7 @@ export const ShowTraefikSystem = ({ serverId }: Props) => {
},
{
retry: 2,
}
},
);
return (

View File

@@ -300,7 +300,6 @@ const data = {
isSingle: true,
isActive: false,
},
] as NavItem[],
help: [
{
@@ -317,7 +316,12 @@ const data = {
name: "Sponsor",
url: "https://opencollective.com/dokploy",
icon: ({ className }) => (
<HeartIcon className={cn("text-red-500 fill-red-600 animate-heartbeat", className)} />
<HeartIcon
className={cn(
"text-red-500 fill-red-600 animate-heartbeat",
className,
)}
/>
),
},
] as ExternalLink[],