mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
refactor: lint
This commit is contained in:
@@ -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>
|
||||
))}
|
||||
|
||||
@@ -30,7 +30,7 @@ export const ShowTraefikSystem = ({ serverId }: Props) => {
|
||||
},
|
||||
{
|
||||
retry: 2,
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
return (
|
||||
|
||||
@@ -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[],
|
||||
|
||||
Reference in New Issue
Block a user