Skip to content

Commit

Permalink
🐛 fix(footer): Email address
Browse files Browse the repository at this point in the history
  • Loading branch information
web-ppanel committed Dec 5, 2024
1 parent 35a9f69 commit a451f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Fragment } from 'react';
const Links = [
{
icon: 'uil:envelope',
href: NEXT_PUBLIC_EMAIL ?? `mailto:${NEXT_PUBLIC_EMAIL}`,
href: NEXT_PUBLIC_EMAIL ? `mailto:${NEXT_PUBLIC_EMAIL}` : undefined,
},
{
icon: 'uil:telegram',
Expand Down

0 comments on commit a451f44

Please sign in to comment.