Skip to content

Commit

Permalink
Fix build error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouder committed Apr 4, 2024
1 parent 4a33ce8 commit 4ce1f1c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/src/components/app-sharing/app-sharing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ export const AppSharing = ({
event: React.MouseEvent<HTMLButtonElement> | null,
newPage: number,
) => {
setPage(newPage);
if (event) {
setPage(newPage);
}
};

const handleChangeRowsPerPage = (
Expand Down

0 comments on commit 4ce1f1c

Please sign in to comment.