This commit is contained in:
Lim Chee Aun 2023-10-20 12:52:56 +08:00
parent 4646859177
commit dba921a3fd

View file

@ -181,7 +181,9 @@ function Search(props) {
return 0;
})
.map((link) => (
<Link to={link.to}>{link.label}</Link>
<Link to={link.to} key={link.type}>
{link.label}
</Link>
))}
</div>
)}