Skip to content

Commit 816bdaf

Browse files
committed
linter
1 parent 58b30ed commit 816bdaf

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

dashboard/ai-analytics/src/components/ui/onboarding-modal.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,6 @@ export function OnboardingModal({ isOpen, onClose }: OnboardingModalProps) {
213213
}
214214
}
215215

216-
const handlePrevious = () => {
217-
if (currentStep > 0) {
218-
setCurrentStep(currentStep - 1)
219-
}
220-
}
221-
222216
const handleSkip = () => {
223217
onClose()
224218
setCurrentStep(0)
@@ -291,10 +285,6 @@ export function OnboardingModal({ isOpen, onClose }: OnboardingModalProps) {
291285
const modalWidth = isInitialStep ? 800 : 573
292286
const modalHeight = isInitialStep ? 700 : 540
293287

294-
// Get the current tab's learn more URL
295-
const currentTabData = TABS.find(tab => tab.id === activeTab)
296-
const learnMoreUrl = currentTabData?.learnMoreUrl || 'https://www.tinybird.co/docs/guides/llm-performance-tracker'
297-
298288
return (
299289
<div className="fixed inset-0 z-50 font-['Roboto']">
300290
<div className="fixed inset-0 bg-black/75" onClick={handleSkip} />

0 commit comments

Comments
 (0)