We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dac3e1 commit bcd8a81Copy full SHA for bcd8a81
opentrons-ai-client/src/molecules/Header/index.tsx
@@ -99,7 +99,7 @@ export function Header({ isExitButton = false }: HeaderProps): JSX.Element {
99
<LogoutOrExitButton onClick={handleLoginOrExitClick}>
100
{isExitButton ? t('exit') : t('logout')}
101
</LogoutOrExitButton>
102
- {location.pathname === '/' && (
+ {(location.pathname === '/' || location.pathname === '/settings') && (
103
<Box marginLeft={SPACING.spacing16}>
104
<SettingsButton onClick={handleSettingsClick} />
105
</Box>
0 commit comments