Skip to content

Commit

Permalink
fix(ui): remove extra brackets causing build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cephaschapa committed Apr 15, 2024
1 parent dc90726 commit 9313f32
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/src/components/Tabs/my-files-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ const MyFilesTab: FC<MyFilesTabProps> = ({
fontSize="body.md"
>
{filteredData.map((file: any) => (
<Tr key={`${city.id}-${file.id}`}>
<Tr key={`${file.id}`}>
<Td gap="16px" alignItems="center">
<Box
display="flex"
Expand Down Expand Up @@ -513,7 +513,6 @@ const MyFilesTab: FC<MyFilesTabProps> = ({
)}
</Box>
</TabPanel>
))}
</TabPanels>
</Tabs>
</Box>
Expand Down

0 comments on commit 9313f32

Please sign in to comment.