Skip to content

Commit

Permalink
Merge pull request #859 from danielcdz/fix/haiko_icon
Browse files Browse the repository at this point in the history
Fix: haiko icon not showing
  • Loading branch information
fricoben authored Oct 7, 2024
2 parents 3a57ed7 + eadf8ef commit 74a0408
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/discover/appIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ const AppIcon = ({ app }: { app: string }) => {
if (appName.toLocaleLowerCase().includes("jediswap")) {
return "/jediswap/favicon.ico";
}
if (appName.toLocaleLowerCase().includes("haiko_solvers")) {
return "/haiko/favicon.ico";
}
return `/${appName.toLowerCase()}/favicon.ico`;
}, []);
return (
Expand Down

0 comments on commit 74a0408

Please sign in to comment.