Skip to content

Commit

Permalink
fix: TOUR error when HTML elements are missing (#2614)
Browse files Browse the repository at this point in the history
  • Loading branch information
ironAiken2 authored Aug 7, 2024
1 parent e0b3ef1 commit 47e9420
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions react/src/pages/SessionLauncherPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1733,13 +1733,15 @@ const SessionLauncherPage = () => {
setSelectedFolderName(undefined);
}}
/> */}
<SessionLauncherValidationTour
open={validationTourOpen}
onClose={() => {
setValidationTourOpen(false);
}}
scrollIntoViewOptions
/>
{currentStep === steps.length - 1 ? (
<SessionLauncherValidationTour
open={validationTourOpen}
onClose={() => {
setValidationTourOpen(false);
}}
scrollIntoViewOptions
/>
) : undefined}
</Flex>
);
};
Expand Down

0 comments on commit 47e9420

Please sign in to comment.