Skip to content

Commit

Permalink
items type
Browse files Browse the repository at this point in the history
  • Loading branch information
joshri committed Sep 12, 2023
1 parent c0af614 commit ab4cace
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/components/Metadata.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ const makeMetadata = (metadata: [string, string][]): [string, any][] => {
return metadataCopy;
};

const MetadataSection: React.FC<{ title: string; items: [string, any][] }> = ({
title,
items,
}) => {
const MetadataSection: React.FC<{
title: string;
items: [string, string | JSX.Element][];
}> = ({ title, items }) => {
return (
<Flex column gap="8">
<Text size="large" color="neutral30">
Expand Down

0 comments on commit ab4cace

Please sign in to comment.