Skip to content

Commit

Permalink
Add missing prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Jun 27, 2024
1 parent 861d7bb commit d2bb60a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions resources/ts/Pages/Integrations/Detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,23 @@ import { useIsMobile } from "../../hooks/useIsMobile";
import { CouponInfoProvider } from "../../Context/CouponInfo";
import type { Integration } from "../../types/Integration";
import { OrganizersInfo } from "../../Components/Integrations/Detail/OrganizersInfo";
import type { Organizer } from "../../types/Organizer";

type Props = {
integration: Integration;
email: string;
subscriptions: Subscription[];
oldCredentialsExpirationDate: string;
errors: Record<string, string | undefined>;
organizers: Organizer[];
};

const Detail = ({
integration,
email,
subscriptions,
oldCredentialsExpirationDate,
organizers,
errors,
}: Props) => {
const { t } = useTranslation();
Expand Down

0 comments on commit d2bb60a

Please sign in to comment.