Skip to content

Commit

Permalink
Closes 494 ? misaligned
Browse files Browse the repository at this point in the history
  • Loading branch information
karesti committed Oct 17, 2024
1 parent f4263bc commit b8e559e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/app/AppLayout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,6 @@ const AppLayout: React.FunctionComponent<IAppLayout> = ({ children }) => {
align={{ default: 'alignRight' }}
spacer={{ default: 'spacerNone', md: 'spacerMd' }}
>
<ToolbarItem>
<Switch
id="darkThemeSwitch"
isChecked={theme === 'dark'}
onChange={toggleTheme}
ouiaId="DarkThemeOuiaId"
label={t('layout.dark-theme')}
className="darkThemeSwitch"
/>
</ToolbarItem>
<ToolbarItem>
<Dropdown
id="aboutInfoQuestionMark"
Expand Down Expand Up @@ -191,6 +181,16 @@ const AppLayout: React.FunctionComponent<IAppLayout> = ({ children }) => {
</DropdownItem>
</Dropdown>
</ToolbarItem>
<ToolbarItem>
<Switch
id="darkThemeSwitch"
isChecked={theme === 'dark'}
onChange={toggleTheme}
ouiaId="DarkThemeOuiaId"
label={t('layout.dark-theme')}
className="darkThemeSwitch"
/>
</ToolbarItem>
</ToolbarGroup>
{!ConsoleServices.authentication().isNotSecured() && userActions()}
</ToolbarContent>
Expand Down

0 comments on commit b8e559e

Please sign in to comment.