Skip to content

Commit

Permalink
[PWAApps] Adjust table height
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanem committed Nov 25, 2024
1 parent a73ed1d commit ca5ca93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pwa/PwaApps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function PwaApps() {
const height = useHeight();
const { layout } = useTheme() as any;
const { tablefooterheight } = layout;
const tableHeight = height + tablefooterheight - headerHeight + 8;
const tableHeight = height + tablefooterheight - headerHeight;
const { filtered } = useAppTableData({ trigger: false, mode: 'pwa' }); // Don't re-trigger here as it causes a refresh

return <Tables.PwaApplicationsGrid data={filtered} height={tableHeight} />;
Expand Down

0 comments on commit ca5ca93

Please sign in to comment.