Skip to content

Commit 3f4a336

Browse files
Prettier run
1 parent d88edc6 commit 3f4a336

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/components/withCurrentUserPersonalDetails.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ type HOCProps = {
1010

1111
type WithCurrentUserPersonalDetailsProps = HOCProps;
1212

13-
export default function <TProps extends WithCurrentUserPersonalDetailsProps>(
14-
WrappedComponent: ComponentType<TProps>,
15-
): ComponentType<Omit<TProps, keyof HOCProps>> {
13+
export default function <TProps extends WithCurrentUserPersonalDetailsProps>(WrappedComponent: ComponentType<TProps>): ComponentType<Omit<TProps, keyof HOCProps>> {
1614
function WithCurrentUserPersonalDetails(props: Omit<TProps, keyof HOCProps>) {
1715
const currentUserPersonalDetails = useCurrentUserPersonalDetails();
1816
return (

0 commit comments

Comments
 (0)