Skip to content

Commit

Permalink
fix: tours spotlight positions (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
thenick775 authored Jan 26, 2025
1 parent 81127d3 commit 8116bb7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions gbajs3/src/components/product-tour/embedded-product-tour.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import type { CompletedProductTourSteps } from './product-tour-intro.tsx';
type EmbeddedProductTourProps = {
completedProductTourStepName: string;
steps: TourSteps;
allowScrolling?: boolean;
isNotInModal?: boolean;
millisecondDelay?: number;
renderWithoutDelay?: boolean;
Expand All @@ -32,7 +31,6 @@ export type TourSteps = Step[];
export const EmbeddedProductTour = ({
completedProductTourStepName,
steps,
allowScrolling = true,
isNotInModal = false, // by default, this component is assumed to be used in modals
millisecondDelay = 500,
renderWithoutDelay = false,
Expand Down Expand Up @@ -74,7 +72,6 @@ export const EmbeddedProductTour = ({
return (
<Joyride
continuous
disableScrollParentFix={allowScrolling}
hideCloseButton
showProgress
showSkipButton
Expand Down

0 comments on commit 8116bb7

Please sign in to comment.