Skip to content

Commit

Permalink
key prop
Browse files Browse the repository at this point in the history
  • Loading branch information
mauberti-bc committed Jan 29, 2025
1 parent c071384 commit 2d0b4ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const ConfigureEnvironmentColumns = (props: IConfigureEnvironmentColumnsP
environmentColumns.qualitative_environments.length || environmentColumns.quantitative_environments.length;

return (
<Box height="100%" display="flex" flexDirection="column" width="100%">
<Box height="100%" display="flex" flexDirection="column">
<Typography variant="h5" mb={2}>
Add Environmental Variables
</Typography>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const ConfigureGeneralColumns = (props: IConfigureGeneralColumnsProps) =>
const isSelected = !hiddenFields.includes(column.field);

return (
<ListItem sx={{ p: 0 }}>
<ListItem key={column.field} sx={{ p: 0 }}>
<AccordionStandardCard
key={column.field}
label={column.headerName ?? column.field}
Expand Down

0 comments on commit 2d0b4ae

Please sign in to comment.