Skip to content

Commit

Permalink
formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matmair committed Nov 14, 2024
1 parent 0fd46bc commit 3708d24
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/frontend/src/tables/InvenTreeTable.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { t } from '@lingui/macro';
import {} from '@mantine/core';
import { Box, Stack } from '@mantine/core';
import { useQuery } from '@tanstack/react-query';
import { useContextMenu } from 'mantine-contextmenu';
Expand Down Expand Up @@ -584,7 +583,6 @@ export function InvenTreeTable<T extends Record<string, any>>({
const items = props.rowActions(record).map((action) => ({
key: action.title ?? '',
title: action.title ?? '',
tooltip: action.tooltip,
color: action.color,
icon: action.icon,
onClick: action.onClick ?? empty,
Expand Down Expand Up @@ -693,8 +691,6 @@ export function InvenTreeTable<T extends Record<string, any>>({
overflow: 'hidden'
})
}}
recordsPerPageOptions={PAGE_SIZES}
onRecordsPerPageChange={updatePageSize}
onRowContextMenu={handleRowContextMenu}
{...optionalParams}
/>
Expand Down

0 comments on commit 3708d24

Please sign in to comment.