diff --git a/src/components/therapy/TherapeuticGoalsTracker.tsx b/src/components/therapy/TherapeuticGoalsTracker.tsx index f7c6d245e..d837f574e 100644 --- a/src/components/therapy/TherapeuticGoalsTracker.tsx +++ b/src/components/therapy/TherapeuticGoalsTracker.tsx @@ -2,7 +2,7 @@ import { useState, useEffect } from 'react' import { Button } from '@/components/ui/button' import { Card } from '@/components/ui/card' -import { Dialog, DialogTitle } from '@/components/ui/dialog' +import { Dialog, DialogContent, DialogTitle } from '@/components/ui/dialog' import { Input } from '@/components/ui/input' import { Progress } from '@/components/ui/progress' import { Textarea } from '@/components/ui/textarea' @@ -348,6 +348,7 @@ export function TherapeuticGoalsTracker({ if (!open) closeModal() }} > +
{editGoal ? 'Edit Goal' : 'Add Goal'}
+
)} diff --git a/src/components/ui/__tests__/PasswordInputWithStrength.test.tsx b/src/components/ui/__tests__/PasswordInputWithStrength.test.tsx index 189d1e746..ef3d96f0a 100644 --- a/src/components/ui/__tests__/PasswordInputWithStrength.test.tsx +++ b/src/components/ui/__tests__/PasswordInputWithStrength.test.tsx @@ -105,4 +105,4 @@ describe('PasswordInputWithStrength', () => { const progressbar = screen.getByRole('progressbar') expect(progressbar.getAttribute('aria-valuetext')).toBe('empty') }) -} \ No newline at end of file +}) \ No newline at end of file