Skip to content

Commit

Permalink
vision: fix contact us button
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwidlund committed Jan 21, 2025
1 parent 29bd2ae commit e31e479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/apps/web/src/components/Vision/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const OpenSourceLegend = () => {
const ContactUsLegend = () => {
useEffect(() => {
const handleKeyDown = (event: KeyboardEvent) => {
if (event.key === 'c') {
if (event.key === 'm') {
window.open('mailto:birk@polar.sh', '_blank')
}
}
Expand All @@ -91,7 +91,7 @@ const ContactUsLegend = () => {
return (
<div className="flex flex-col gap-y-2">
<div className="flex flex-row gap-x-2">
<Button variant="icon">C</Button>
<Button variant="icon">M</Button>
</div>
<span>Contact Us</span>
</div>
Expand Down

0 comments on commit e31e479

Please sign in to comment.