Skip to content

Commit

Permalink
fixing the lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Dec 22, 2024
1 parent 4cbdc74 commit b8f94f0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
8 changes: 1 addition & 7 deletions src/components/gui/table-optimized/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,8 @@ function renderCellList({
const cells = windowArray.map((row, rowIndex) => {
const absoluteRowIndex = rowIndex + rowStart;

let rowClass = undefined;

return (
<tr
key={absoluteRowIndex}
data-row={absoluteRowIndex}
className={rowClass}
>
<tr key={absoluteRowIndex} data-row={absoluteRowIndex}>
<td
className="sticky left-0 bg-zinc-100 dark:bg-zinc-900"
style={{ zIndex: 15 }}
Expand Down
1 change: 0 additions & 1 deletion src/components/gui/table-optimized/table-cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { OptimizeTableHeaderWithIndexProps } from ".";
import tableResultCellRenderer from "../table-result/render-cell";
import { useMemo } from "react";
import { cn } from "@/lib/utils";
import { is } from "drizzle-orm";

export default function OptimizeTableCell({
state,
Expand Down

0 comments on commit b8f94f0

Please sign in to comment.