Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User/spencer/telemetry teaser #330

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

SpencerVR1
Copy link

No description provided.

@SpencerVR1 SpencerVR1 requested a review from brian-ngyn November 9, 2023 02:41
@SpencerVR1 SpencerVR1 self-assigned this Nov 9, 2023
Comment on lines 29 to 32
const [speed, setSpeed] = useState(0);
const [battery, setBattery] = useState(0);
const [weather, setWeather] = useState(0);
const [range, setRange] = useState(NaN);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use explicit type annotations

};

const validateSpeed = () => {
if (speed >= 0 && speed <= 90) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try ternary operators, return speed >= 0 && speed <= 90 ? true : false

};

const validateBattery = () => {
if (battery >= 0 && battery <= 100) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See above comment about ternary operators

@brian-ngyn
Copy link
Member

Very good! Just a couple minor fixes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants