Skip to content

Commit

Permalink
chore(lint): run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
nurikk-sa committed Apr 5, 2024
1 parent ee8f606 commit f0a2cf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/navbar/SettingsDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export function SettingsDropdown() {
<NavDropdown title={<i className={'fa fa-cog'} />} id="navbarScrollingDropdown">
<>
{settingsTabs.map((tab) => (
<NavDropdown.Item as={NavLink} key={tab.url} activeClassName={'active'} to={tab.url} >
{t(tab.translationKey)}
<NavDropdown.Item as={NavLink} key={tab.url} activeClassName={'active'} to={tab.url}>
{t(tab.translationKey)}
</NavDropdown.Item>
))}
</>
Expand Down
1 change: 0 additions & 1 deletion src/components/navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ const NavBar: FunctionComponent<PropsFromStore & ThemeActions & WithTranslation<
))}
<SettingsDropdown />
<LocalePicker />

</ul>
<StartStopJoinButton devices={devices} setPermitJoin={setPermitJoin} bridgeInfo={bridgeInfo} />
<ThemeSwitcher saveCurrentTheme={setTheme} />
Expand Down

0 comments on commit f0a2cf5

Please sign in to comment.