Skip to content

Commit

Permalink
Rename props
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Markopoulos committed Nov 19, 2024
1 parent becd0e2 commit 48b3707
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ const styles = (theme: Theme) =>
},
});

type SiteTableBodyIncomingProps = {
type SiteTableIncomingProps = {
header: React.ReactNode;
order: Order;
orderBy: OrderKeys;
Expand All @@ -360,6 +360,6 @@ SiteTable.defaultProps = {
scrollPageOnSelection: false,
};

type SiteTableProps = WithStyles<typeof styles> & SiteTableBodyIncomingProps;
type SiteTableProps = WithStyles<typeof styles> & SiteTableIncomingProps;

export default withStyles(styles)(SiteTable);

0 comments on commit 48b3707

Please sign in to comment.