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

feat(app): add labware selection and volume entry screens #15074

Merged
merged 10 commits into from
May 3, 2024
Prev Previous commit
Add missing key props for new array
  • Loading branch information
smb2268 committed May 3, 2024
commit b6398fb52004c6a8733de2650b9c86bcddf19bec
15 changes: 8 additions & 7 deletions app/src/organisms/QuickTransferFlow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,17 @@ export const QuickTransferFlow = (): JSX.Element => {

const modalContentInOrder: JSX.Element[] = [
<CreateNewTransfer
key={1}
onNext={() => setCurrentStep(prevStep => prevStep + 1)}
exitButtonProps={exitButtonProps}
/>,
<SelectPipette {...sharedMiddleStepProps} />,
<SelectTipRack {...sharedMiddleStepProps} />,
<SelectSourceLabware {...sharedMiddleStepProps} />,
<SelectSourceWells {...sharedMiddleStepProps} />,
<SelectDestLabware {...sharedMiddleStepProps} />,
<SelectDestWells {...sharedMiddleStepProps} />,
<VolumeEntry {...sharedMiddleStepProps} onNext={() => {}} />,
<SelectPipette key={2} {...sharedMiddleStepProps} />,
<SelectTipRack key={3} {...sharedMiddleStepProps} />,
<SelectSourceLabware key={4} {...sharedMiddleStepProps} />,
<SelectSourceWells key={5} {...sharedMiddleStepProps} />,
<SelectDestLabware key={6} {...sharedMiddleStepProps} />,
<SelectDestWells key={7} {...sharedMiddleStepProps} />,
<VolumeEntry key={8} {...sharedMiddleStepProps} onNext={() => {}} />,
]

return (
Expand Down
Loading