Skip to content

Commit 8e3a200

Browse files
authored
simplify column header; fix failing test (#2116)
simplify header; fix test
1 parent bf592a3 commit 8e3a200

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/pages/project/instances/instance/tabs/StorageTab.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ StorageTab.loader = async ({ params }: LoaderFunctionArgs) => {
5454

5555
const colHelper = createColumnHelper<Disk>()
5656
const staticCols = [
57-
colHelper.accessor('name', { header: 'Name' }),
57+
colHelper.accessor('name', {}),
5858
colHelper.accessor('size', {
59-
header: 'size',
6059
cell: (info) => <SizeCell value={info.getValue()} />,
6160
}),
6261
colHelper.accessor((row) => row.state.state, {

0 commit comments

Comments
 (0)