Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Salam-Dalloul committed Mar 11, 2024
1 parent 7d07434 commit cd82d47
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/summaryPage/Detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ interface SectionDataType {
type LabelsType = {
[key: string]: string;
};
export const Detail = ({
keyName, sectionData, value, labels } :
{keyName: string, sectionData: SectionDataType, value: string | number, labels: LabelsType
}) => (

interface DetailProps {
keyName: string, sectionData: SectionDataType, value: string | number, labels: LabelsType
}
export const Detail = ({ keyName, sectionData, value, labels } : DetailProps) => (
<Stack
key={keyName}
direction="row"
Expand Down

0 comments on commit cd82d47

Please sign in to comment.