Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMalfait committed Aug 8, 2024
1 parent 31569e5 commit c0599a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ export const ObjectMetadataNavItems = ({ isRemote }: { isRemote: boolean }) => {
<AnimatePresence>
{shouldSubItemsBeDisplayed && (
<motion.div
key={objectMetadataItem.id}
initial="hidden"
animate="visible"
exit="hidden"
Expand All @@ -152,6 +151,7 @@ export const ObjectMetadataNavItems = ({ isRemote }: { isRemote: boolean }) => {
`/objects/${objectMetadataItem.namePlural}?view=${view.id}`
}
Icon={getIcon(view.icon)}
key={view.id}
/>
))}
</motion.div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export const RecordIndexBoardDataLoader = ({
boardFieldSelectValue={option.value}
recordBoardId={recordBoardId}
columnId={columnIds[index]}
key={index}
/>
))}
{recordIndexKanbanFieldMetadataItem?.isNullable && (
Expand Down

0 comments on commit c0599a8

Please sign in to comment.