Skip to content

Commit

Permalink
ignore tour errors
Browse files Browse the repository at this point in the history
  • Loading branch information
yomybaby committed Sep 9, 2024
1 parent 70a922f commit c8adf42
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions react/src/pages/SessionLauncherPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1757,16 +1757,16 @@ const SessionLauncherPage = () => {
}}
/> */}
{currentStep === steps.length - 1 ? (
// <ErrorBoundary fallback={null}>
<SessionLauncherValidationTour
open={validationTourOpen}
onClose={() => {
setValidationTourOpen(false);
}}
scrollIntoViewOptions
/>
) : // </ErrorBoundary>
undefined}
<ErrorBoundary fallback={null}>
<SessionLauncherValidationTour
open={validationTourOpen}
onClose={() => {
setValidationTourOpen(false);
}}
scrollIntoViewOptions
/>
</ErrorBoundary>
) : undefined}
</Flex>
);
};
Expand Down

0 comments on commit c8adf42

Please sign in to comment.