diff --git a/src/components/ToolTipGuide.css b/src/components/ToolTipGuide.css new file mode 100644 index 0000000..721c13b --- /dev/null +++ b/src/components/ToolTipGuide.css @@ -0,0 +1,3 @@ +.force-opacity-1 { + opacity: 1 !important; +} \ No newline at end of file diff --git a/src/components/TooltipGuide.tsx b/src/components/TooltipGuide.tsx index f43ce34..a0bf88b 100644 --- a/src/components/TooltipGuide.tsx +++ b/src/components/TooltipGuide.tsx @@ -1,5 +1,6 @@ import { useState, useEffect, type ReactNode } from 'react' import { Tooltip } from 'react-tooltip' +import './ToolTipGuide.css' export interface TooltipStep { id: string @@ -43,13 +44,24 @@ const TooltipGuide = ({ } } + const handleSkip = () => { + setShowTooltips(false) + onComplete?.() + } + const renderTooltipContent = (content: string) => { return (