Skip to content

Commit

Permalink
remove optional closing tags for pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
m0nggh committed Jan 8, 2024
1 parent ccf840c commit dd90cb6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/AppFlows/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function AppFlows(props: AppFlowsProps): React.ReactElement {
}
pageSize={FLOW_PER_PAGE}
totalCount={pageInfo?.totalCount}
></Pagination>
/>
</Flex>
)}
</>
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Execution/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default function Execution(): React.ReactElement {
}
pageSize={EXECUTION_STEP_PER_PAGE}
totalCount={pageInfo?.totalCount}
></Pagination>
/>
</Flex>
)}
</Container>
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Executions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export default function Executions(): ReactElement {
onPageChange={handlePageChange}
pageSize={EXECUTION_PER_PAGE}
totalCount={pageInfo?.totalCount}
></Pagination>
/>
</Flex>
)}
</Container>
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Flows/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default function Flows(): React.ReactElement {
onPageChange={handlePageChange}
pageSize={FLOW_PER_PAGE}
totalCount={pageInfo?.totalCount}
></Pagination>
/>
</Flex>
)}
</Container>
Expand Down

0 comments on commit dd90cb6

Please sign in to comment.