Skip to content

Commit

Permalink
We try to fix wallet error on refresh... see desc (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant authored Jun 6, 2023
1 parent 3eb3148 commit cd2194b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ export function Dropdown(props: IDropdownProps) {
hover:bg-tertiary hover:border-tertiary
disabled:text-f-disabled-1 disabled:bg-c-disabled-2 disabled:border-c-disabled-1`}
>
<div className={customIconClass}>{selected.icon}</div>
<div className="mas-menu-active">{selected.item}</div>
<div className={customIconClass}>{selected?.icon}</div>
<div className="mas-menu-active">{selected?.item}</div>
<Icon toggle={toggle} />
</button>
<div
Expand Down

0 comments on commit cd2194b

Please sign in to comment.