Skip to content

Commit

Permalink
fix spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierdonnellon committed Jun 27, 2023
1 parent 1153280 commit 65dd459
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/Table/Table.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const expansionIconOverride = ({ isCollapsed, onClick }: ExpansionIconProps) =>
checked={!isCollapsed}
onClick={onClick}
checkboxType={CheckboxTypes.check}
inputProps={{ onChange: () => { } }}
inputProps={{ onChange: () => {} }}
/>
);

Expand Down Expand Up @@ -134,7 +134,7 @@ export const Default: Story<DefaultProps> = ({
}
checked={Boolean(rows.filter(checkRowForSelection).length)}
onClick={e => selectAll(e)}
inputProps={{ onChange: () => { } }}
inputProps={{ onChange: () => {} }}
/>
</Table.HeaderCell>
);
Expand All @@ -155,7 +155,7 @@ export const Default: Story<DefaultProps> = ({
onClick={() => onSelect(index, selected)}
checkboxType={CheckboxTypes.check}
checked={selected}
inputProps={{ onChange: () => { } }}
inputProps={{ onChange: () => {} }}
>
{reachedMinWidth ? 'Select for download' : ''}
</Checkbox>
Expand All @@ -164,7 +164,7 @@ export const Default: Story<DefaultProps> = ({

const NotesCell = ({ notes }: { notes: string }) => (
<Table.Cell>
<NoteField onChange={() => { }} rows={3} value={notes} />
<NoteField onChange={() => {}} rows={3} value={notes} />
</Table.Cell>
);

Expand Down Expand Up @@ -303,7 +303,7 @@ export const Groups: Story<GroupsProps> = ({
checkboxType={allChecked ? CheckboxTypes.check : CheckboxTypes.neutral}
checked={Boolean(totalSelected)}
onClick={selectAll}
inputProps={{ onChange: () => { } }}
inputProps={{ onChange: () => {} }}
/>
</Table.HeaderCell>
);
Expand All @@ -328,7 +328,7 @@ export const Groups: Story<GroupsProps> = ({
onClick={() => onSelect(index, groupIndex, selected)}
checkboxType={CheckboxTypes.check}
checked={selected}
inputProps={{ onChange: () => { } }}
inputProps={{ onChange: () => {} }}
>
{reachedMinWidth ? 'Select for download' : ''}
</Checkbox>
Expand All @@ -343,7 +343,7 @@ export const Groups: Story<GroupsProps> = ({

const NotesCell: React.FC<NotesCellProps> = ({ notes }) => (
<Table.Cell>
<NoteField onChange={() => { }} rows={3} value={notes} />
<NoteField onChange={() => {}} rows={3} value={notes} />
</Table.Cell>
);

Expand Down

0 comments on commit 65dd459

Please sign in to comment.