Skip to content

Commit d2f2585

Browse files
committed
Fixes from testing
1 parent 0456087 commit d2f2585

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed
Lines changed: 8 additions & 12 deletions
Loading

feedingwebapp/src/Pages/Settings/Main.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ const Main = () => {
277277
display: 'flex'
278278
}}
279279
alt={config.title}
280-
className='center'
280+
className='settingsImage'
281281
/>
282282
<p
283283
style={{

feedingwebapp/src/Pages/Settings/Settings.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import {
2323
STOW_PARAM_JOINTS
2424
} from '../Constants'
2525
import PlanningScene from './PlanningScene'
26+
import AutoContinue from './AutoContinue'
2627

2728
/**
2829
* The Settings components displays the appropriate settings page based on the
@@ -141,6 +142,8 @@ const Settings = (props) => {
141142
)
142143
case SETTINGS_STATE.PLANNING_SCENE:
143144
return <PlanningScene />
145+
case SETTINGS_STATE.AUTO_CONTINUE:
146+
return <AutoContinue />
144147
default:
145148
console.log('Invalid settings state', settingsState)
146149
return <Main />

0 commit comments

Comments
 (0)