Skip to content

Commit

Permalink
chore: disable debug sections
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoformiga committed Dec 19, 2024
1 parent 8e790dc commit a56dca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/components/cms/RenderSections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const useDividedSections = (sections: Section[]) => {
export const LazyLoadingSection = ({
sectionName,
children,
debug = true,
debug = false,
domInteractive = false,
}: {
sectionName: string
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/cms/ViewportObserver.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function ViewportObserver({
root = null,
rootMargin,
children,
debug = true,
debug = false,
domInteractive = false,
}: PropsWithChildren<ViewportObserverProps>) {
const [isVisible, setVisible] = useState(false)
Expand Down

0 comments on commit a56dca6

Please sign in to comment.