Skip to content

Commit

Permalink
fix: summary undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
mari1912 committed Jul 19, 2024
1 parent 6bbd34d commit 3258ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/Summary/Summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Summary = ({
}: ISummaryTable): JSX.Element => {
const summaryBodyRows = useMemo(
() =>
summaryBody.map(row => (
summaryBody?.map(row => (
<SummaryItem
key={row.arch.text}
arch={row.arch}
Expand Down

0 comments on commit 3258ce4

Please sign in to comment.