Skip to content

Commit

Permalink
fix: remove export, PropsWithChildren usage
Browse files Browse the repository at this point in the history
  • Loading branch information
samderanova committed Jan 24, 2024
1 parent 7fe7c54 commit bd4635c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import Popover from "@cloudscape-design/components/popover";
import { PropsWithChildren, ReactNode } from "react";
import { PropsWithChildren } from "react";

interface ParticipantActionPopoverProps {
content: string;
children?: ReactNode;
}

function ParticipantActionPopover({
Expand Down
2 changes: 1 addition & 1 deletion apps/site/src/lib/admin/useParticipants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import useSWR from "swr";

import { Status, Uid } from "@/lib/admin/useApplicant";

export const enum Role {
const enum Role {
Director = "director",
Organizer = "organizer",
CheckInLead = "checkin_lead",
Expand Down

0 comments on commit bd4635c

Please sign in to comment.