Skip to content

Commit

Permalink
Fix support icon in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
timroes committed Nov 25, 2022
1 parent ede4d29 commit 6c4e262
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { faSlack } from "@fortawesome/free-brands-svg-icons";
import { faEnvelope } from "@fortawesome/free-regular-svg-icons";
import { faDesktop, faQuestionCircle } from "@fortawesome/free-solid-svg-icons";
import { faCircleQuestion, faEnvelope } from "@fortawesome/free-regular-svg-icons";
import { faDesktop } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import classNames from "classnames";
import React from "react";
Expand Down Expand Up @@ -153,7 +153,7 @@ const SideBar: React.FC = () => {
>
{({ open }) => (
<button className={classNames(styles.dropdownMenuButton, { [styles.open]: open })}>
<FontAwesomeIcon icon={faQuestionCircle} size="2x" />
<FontAwesomeIcon icon={faCircleQuestion} size="2x" />
<Text className={styles.text} size="sm">
<FormattedMessage id="sidebar.support" />
</Text>
Expand Down

0 comments on commit 6c4e262

Please sign in to comment.