Skip to content

Commit 9fa80d7

Browse files
authored
quick fixxx (#145)
* quick fixxx * Delete packages/db/src/drizzle/meta/0000_snapshot.json * Delete packages/db/src/drizzle/meta/_journal.json
1 parent 6e2c00d commit 9fa80d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/dashboard/components/analytics/favicon-image.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ export function FaviconImage({
5858
);
5959
}
6060

61+
const isGitHub = hostname === 'github.com';
62+
6163
return (
6264
<Image
6365
alt={altText || `${domain} favicon`}
64-
className={className}
66+
className={`${className} ${isGitHub ? 'dark:invert ' : ''}`}
6567
height={size}
6668
onError={() => setError(true)}
6769
src={`https://icons.duckduckgo.com/ip3/${hostname}.ico`}

0 commit comments

Comments
 (0)