Skip to content

Commit 3e5dd79

Browse files
committed
update heights
1 parent 60e98ed commit 3e5dd79

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/src/examples/11-heights.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-explicit-any */
12
import { useEffect, useRef, useState } from "react";
23
import { ColumnProps, Table } from "react-fluid-table";
34
import { Button, Form, Icon, Input } from "semantic-ui-react";
@@ -116,7 +117,7 @@ const Example11 = () => {
116117
<StyledTable
117118
borders
118119
data={testData.slice(0, size)}
119-
columns={columns}
120+
columns={columns as unknown as any[]}
120121
tableHeight={tableHeight}
121122
minTableHeight={minTableHeight}
122123
maxTableHeight={maxTableHeight}

0 commit comments

Comments
 (0)