Skip to content

Commit

Permalink
Merge pull request #209 from bcgov/console-key-fix
Browse files Browse the repository at this point in the history
fixing key warning in console
  • Loading branch information
oomIRL authored Feb 19, 2025
2 parents 96927b6 + 8704cd0 commit 645896f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/components/home/HomePageCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ export const HomePageCards = () => {

<Grid container spacing={4}>
{docs.map(d => (
<Grid item sm={12} md={4} style={{ display: 'flex' }}>
<Card key={d.key} classes={{ root: classes.card }}>
<Grid item key={d.key} sm={12} md={4} style={{ display: 'flex' }}>
<Card classes={{ root: classes.card }}>
<CardMedia>
<ItemCardHeader
classes={{ root: classes.cardHeader }}
Expand Down

0 comments on commit 645896f

Please sign in to comment.