Skip to content

Commit

Permalink
fix: render issue in projects + change some projects details (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizAsFight authored Sep 14, 2024
1 parent 860cf94 commit f80bcd2
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 @@ -30,7 +30,7 @@ export const ProjectList = ({
return (
<Grid className={classes.grid()}>
{projects.map((project) => (
<ProjectItem {...project} key={project.url} />
<ProjectItem {...project} key={project.name + project.url} />
))}
</Grid>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"isLive": true,
"name": "Bako Safe",
"url": "https://www.bako.global/",
"tags": ["DeFi", "Wallet", "Multi-sig"],
"tags": ["Wallet", "Multi-sig", "Tooling"],
"description": "Bako Safe is the Native Multisig of Rollup OS.",
"github": "",
"twitter": "https://twitter.com/bakosafe",
Expand Down

0 comments on commit f80bcd2

Please sign in to comment.