Skip to content

Commit

Permalink
Update TemplatesView.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
colbylwilliams committed Jun 21, 2024
1 parent a6cf45c commit 56d4936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TemplatesView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const TemplatesView: React.FC<ITemplatesViewProps> = () => {
return (
<Grid container spacing={4} >
{templates?.map(template => (
<Grid item xs={12} sm={12} md={6} lg={4} xl={3} key={`${template.ref.kind}:${template.ref.provider}/${template.ref.namespace}/${template.ref.name}`}>
<Grid item xs={12} sm={12} md={6} lg={4} xl={3} key={template.ref.id}>
<TemplateCard template={template as Template} />
</Grid>
))}
Expand Down

0 comments on commit 56d4936

Please sign in to comment.