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

refactor(app): Wire up Error Recovery flows on desktop #15560

Merged
merged 13 commits into from
Jul 2, 2024
Merged

Conversation

TamarZanzouri
Copy link
Contributor

Overview

closes https://opentrons.atlassian.net/browse/EXEC-552.
@mjhuff 's implementation :-) I just fixed the test and put up the PR.

Test Plan

  • make sure the error recovery flow matches Figma designs and logic on desktop app.

Risk assessment

low.

@TamarZanzouri TamarZanzouri requested review from a team as code owners July 1, 2024 19:24
@TamarZanzouri TamarZanzouri requested review from shlokamin and sfoster1 and removed request for a team July 1, 2024 19:24
Comment on lines 125 to 127
export function getConfig(path?: string): any {
const result = path == null ? null : store().get(path)
const over = getOverrides(path)
export function getConfig(path?: any): any {
const result = store().get(path)
const over = getOverrides(path as string | undefined)
Copy link
Member

Choose a reason for hiding this comment

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

how come we're changing the app shell's config getter?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@mjhuff can probably speak more about this? maybe @sfoster1 is aware as well?

Copy link
Member

Choose a reason for hiding this comment

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

it's gone now that you merged edge into the branch

Copy link
Member

@sfoster1 sfoster1 left a comment

Choose a reason for hiding this comment

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

This looks good, just need to get tests/checks passing

@TamarZanzouri TamarZanzouri merged commit 8ff3fd7 into edge Jul 2, 2024
25 checks passed
sfoster1 added a commit that referenced this pull request Jul 5, 2024
)

#15560 introduced a logic bug that prevented ER from launching on ODD,
this fixes it.
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.

None yet

5 participants