From 2db6a24e21a034728a82383ffb83995e8c37cb01 Mon Sep 17 00:00:00 2001 From: David Agbenyega Date: Wed, 19 Jun 2024 01:10:05 -0400 Subject: [PATCH] Remove CoachingSessionProps --- .../ui/dashboard/select-coaching-session.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/components/ui/dashboard/select-coaching-session.tsx b/src/components/ui/dashboard/select-coaching-session.tsx index 657a6ff..677fcb6 100644 --- a/src/components/ui/dashboard/select-coaching-session.tsx +++ b/src/components/ui/dashboard/select-coaching-session.tsx @@ -22,15 +22,7 @@ import { useAuthStore } from "@/lib/providers/auth-store-provider"; import { Organization, defaultOrganizations } from "@/types/organization"; import { useEffect, useState } from "react"; -export interface CoachingSessionProps { - /** The current logged in user's UUID */ - userUUID: string; -} - -export function SelectCoachingSession({ - userUUID, - ...props -}: CoachingSessionProps) { +export function SelectCoachingSession() { const [organizationSelection, setOrganizationSelection] = useState(""); const [relationshipSelection, setRelationshipSelection] =