Skip to content

Commit

Permalink
fix(frontend): forgot to remove default icon of Support (#4285)
Browse files Browse the repository at this point in the history
# Motivation

In #4280 I forgot to remove
the existing icon of `ExternalLink` component.

### Before

![Screenshot 2025-01-15 at 14 09
28](https://github.com/user-attachments/assets/6c3f1f15-00b7-4061-b392-2628e544ea70)


### After

![Screenshot 2025-01-15 at 14 09
17](https://github.com/user-attachments/assets/0a9ccc4a-53ad-4ee4-ae56-88c86554b54f)

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
AntonioVentilii and github-actions[bot] authored Jan 15, 2025
1 parent 3d18e35 commit 0d9eb45
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/frontend/src/lib/components/core/Menu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,11 @@

<ChangelogLink />

<ExternalLink href="mailto:[email protected]" ariaLabel={$i18n.navigation.alt.support_email}>
<ExternalLink
href="mailto:[email protected]"
ariaLabel={$i18n.navigation.alt.support_email}
iconVisible={false}
>
<IconHelp />
{$i18n.navigation.text.support_email}
</ExternalLink>
Expand Down

0 comments on commit 0d9eb45

Please sign in to comment.