Skip to content

Commit

Permalink
Fixes from testing
Browse files Browse the repository at this point in the history
  • Loading branch information
amalnanavati committed Sep 1, 2024
1 parent 0456087 commit d2f2585
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
20 changes: 8 additions & 12 deletions feedingwebapp/public/robot_state_imgs/forward.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion feedingwebapp/src/Pages/Settings/Main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ const Main = () => {
display: 'flex'
}}
alt={config.title}
className='center'
className='settingsImage'
/>
<p
style={{
Expand Down
3 changes: 3 additions & 0 deletions feedingwebapp/src/Pages/Settings/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
STOW_PARAM_JOINTS
} from '../Constants'
import PlanningScene from './PlanningScene'
import AutoContinue from './AutoContinue'

/**
* The Settings components displays the appropriate settings page based on the
Expand Down Expand Up @@ -141,6 +142,8 @@ const Settings = (props) => {
)
case SETTINGS_STATE.PLANNING_SCENE:
return <PlanningScene />
case SETTINGS_STATE.AUTO_CONTINUE:
return <AutoContinue />
default:
console.log('Invalid settings state', settingsState)
return <Main />
Expand Down

0 comments on commit d2f2585

Please sign in to comment.