Skip to content

Commit

Permalink
Fix report margins
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoferlund committed Aug 2, 2023
1 parent 3e42c58 commit b3ce4ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const ReportsTable = ({ data }: ReportsTableProps): JSX.Element => {
Object.keys(data[0]).map((key) => ({
Header: key,
accessor: key,
className: 'pl-5 text-left',
className: 'px-5 text-left',
})),
[data]
);
Expand All @@ -41,7 +41,7 @@ export const ReportsTable = ({ data }: ReportsTableProps): JSX.Element => {
const { key, ...restHeaderGroupProps } =
headerGroup.getHeaderGroupProps();
return (
<tr className="px-5" key={key} {...restHeaderGroupProps}>
<tr key={key} {...restHeaderGroupProps}>
{headerGroup.headers.map((column) => {
const { key, ...restColumn } = column.getHeaderProps();
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down

0 comments on commit b3ce4ce

Please sign in to comment.