Skip to content

Commit

Permalink
Added missing display names
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Sep 15, 2023
1 parent d3b9dd6 commit d946375
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ const DebugProfilerRenderInfo: React.FC<DebugProfilerRenderInfoProps> = (props)
);
};

DebugProfilerRenderInfo.displayName = "DebugProfilerRenderInfo";

type DebugProfilerWrapperProps = {
id: string;
children: React.ReactNode;
Expand All @@ -29,6 +31,8 @@ const DebugProfilerWrapper = React.memo((props: DebugProfilerWrapperProps) => {
);
});

DebugProfilerWrapper.displayName = "DebugProfilerWrapper";

export type DebugProfilerProps = {
id: string;
children: React.ReactNode;
Expand Down

0 comments on commit d946375

Please sign in to comment.