Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ui/apps/pmm/src/contexts/tour/tour.provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ export const TourProvider: FC<PropsWithChildren> = ({ children }) => {
currentStep={currentStep}
setCurrentStep={setCurrentStep}
onClickClose={endTour}
onClickMask={endTour}
onClickMask={() => {
// Prevent tour from closing when clicking on backdrop
}}
position="right"
components={{
Badge: () => null,
Expand Down
Loading