-
Notifications
You must be signed in to change notification settings - Fork 179
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
chore(protocol-designer): expose gen2 multi pipettes behind ff #4398
Conversation
Add feature flag that enables the selection of GEN2 multi pipettes in the File tab. Closes #4396
@@ -66,11 +68,15 @@ export default function ChangePipetteFields(props: Props) { | |||
const renderPipetteSelect = (props: PipetteSelectProps) => { | |||
const { tabIndex, mount } = props | |||
const pipetteName = values[mount].pipetteName | |||
|
|||
const nameBlacklist = useSelector(getEnableMultiGEN2Pipettes) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
failing lint b/c this hook is called inside a fn, needs to move out into component body
Codecov Report
@@ Coverage Diff @@
## edge #4398 +/- ##
==========================================
- Coverage 55.99% 55.85% -0.15%
==========================================
Files 899 899
Lines 25503 25569 +66
==========================================
Hits 14281 14281
- Misses 11222 11288 +66
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
↪️
Add feature flag that enables the selection of GEN2 multi pipettes in the File tab.
Closes #4396