Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCimini90 committed Feb 19, 2025
1 parent f1ff255 commit de987fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/pn-commons/src/components/Data/PnTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const PnTable: React.FC<Props> = ({ ariaTitle, testId, children, slotProps }) =>

return (
<Root>
<TableContainer sx={{ marginBottom: '10px' }} {...slotProps?.tableContainer}>
<TableContainer sx={{ marginBottom: '10px' }} {...slotProps?.tableContainer}>
<Table
id="notifications-table"
stickyHeader
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ const DesktopNotifications = ({
};

return (
<div aria-live='assertive'>
<div aria-live="assertive">
<FilterNotifications
ref={filterNotificationsRef}
showFilters={showFilters}
currentDelegator={currentDelegator}
lengthOfNotifications={rows.length}
/>
{rows.length ? (
<PnTable testId="notificationsTable" >
<PnTable testId="notificationsTable">
<PnTableHeader>
{columns.map((column) => (
<PnTableHeaderCell
Expand Down

0 comments on commit de987fa

Please sign in to comment.