Skip to content

Commit

Permalink
remove commented question (resolved, answer is yes)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwherry authored and MCLiii committed Mar 6, 2024
1 parent d49a4ad commit df5745e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "chase-car-dashboard-frontend",
"version": "5.0.0",
"private": true,
"proxy": "http://localhost:4001",
"proxy": "http://127.0.0.1:4001",
"dependencies": {
"@chakra-ui/icons": "^1.1.5",
"@chakra-ui/react": "^1.8.3",
Expand Down
3 changes: 1 addition & 2 deletions Frontend/src/Components/Motor_Motion/Motor_Motion.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ export default function Motor_Motion(props) {
<Center direction='row' pl='1' pr='1' h='100%'>
<Text fontSize='sm'>Accelerator Out</Text>
<Spacer/>
{/*<Text fontSize='sm'>{props.data?.accelerator_out[0].toFixed(1) ?? -1.0} {CONSTANTS.accelerator_out.UNIT}</Text>*/}
</Center>
</GridItem>
<GridItem
Expand Down Expand Up @@ -301,7 +300,7 @@ export default function Motor_Motion(props) {
colStart={3}
>
<Center h='100%' w='100%'>
{props.data?.headlights_led_en[0] ? <Image fit={fitType} boxSize='35px' src={Images.Headlights}/> : <Box h='35px'/> /*Does this mean the same as headlights on?*/}
{props.data?.headlights_led_en[0] ? <Image fit={fitType} boxSize='35px' src={Images.Headlights}/> : <Box h='35px'/>}
</Center>
</GridItem>
<GridItem
Expand Down

0 comments on commit df5745e

Please sign in to comment.