Skip to content

Commit

Permalink
[docs] Add hash to key to remove noise from console (mui#44289)
Browse files Browse the repository at this point in the history
  • Loading branch information
sai6855 authored Nov 2, 2024
1 parent 6db477a commit 37f3238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/modules/components/ApiPage/table/SlotsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default function SlotsTable(props: SlotsTableProps) {
const { description, className, name, defaultValue, hash } = params;

return (
<tr key={className} id={hash}>
<tr key={`${className}-${hash}`} id={hash}>
<td className="slot-name" style={{ fontWeight: '600' }}>
{name}
</td>
Expand Down

0 comments on commit 37f3238

Please sign in to comment.