Skip to content

Commit

Permalink
OR null dang it
Browse files Browse the repository at this point in the history
  • Loading branch information
lancegliser committed Oct 25, 2024
1 parent 83d2f9d commit 1f79b8e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { ComponentProps, FC } from "react";
import { twMerge } from "tailwind-merge";

export type TraineeIdentifiersProps = ComponentProps<"div"> & {
id?: string;
name?: string;
id?: string | null;
name?: string | null;
loading?: boolean;
};
export const TraineeIdentifiers: FC<TraineeIdentifiersProps> = ({
Expand Down

0 comments on commit 1f79b8e

Please sign in to comment.