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

fix(app): ODD LPC copy and styling #13925

Merged
merged 5 commits into from
Nov 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use TS inference rather than explicit typing on variable declaration
  • Loading branch information
ncdiehl11 committed Nov 8, 2023
commit 27d76f40076b0872de94e23b1e9e2a6384ce3f55
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export const LabwarePositionCheckComponent = (
const currentStep = LPCSteps?.[currentStepIndex]
if (currentStep == null) return null

const protocolHasModules: boolean = protocolData.modules.length > 0
const protocolHasModules = protocolData.modules.length > 0

const handleJog = (
axis: Axis,
Expand Down