Skip to content

Commit 6764ba5

Browse files
authored
minor: fix hydration warning due to whitespace in minitable (#2961)
1 parent f02be30 commit 6764ba5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/ui/lib/MiniTable.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ export function MiniTable<T>({
144144
{columns.map((column, index) => (
145145
<HeadCell key={index}>{column.header}</HeadCell>
146146
))}
147-
<HeadCell /> {/* For remove button */}
147+
{/* For remove button */}
148+
<HeadCell />
148149
</Header>
149150

150151
<Body>

0 commit comments

Comments
 (0)