Skip to content

Commit 2fc98af

Browse files
committed
lint fix
1 parent 73f8580 commit 2fc98af

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/apps/profiles/src/member-profile/profile-header/OpenForGigs/OpenForGigs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const OpenForGigs: FC<OpenForGigsProps> = (props: OpenForGigsProps) => {
5858
<p className={classNames('body-main-bold', styles.unknownOopenToWork)}>
5959
Unknown
6060
</p>
61-
): (
61+
) : (
6262
<p className={classNames('body-main-bold', !openForWork ? styles.notOopenToWork : '')}>
6363
{openForWork ? 'open to work' : 'not open to work'}
6464
</p>

src/apps/profiles/src/member-profile/profile-header/OpenForGigsModifyModal/OpenForGigsModifyModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ const OpenForGigsModifyModal: FC<OpenForGigsModifyModalProps> = (props: OpenForG
153153
>
154154
<div className={styles.modalBody}>
155155
<p>
156-
By selecting “Open to Work” our customers will know that you are available for engagement opportunities.
156+
By selecting “Open to Work” our customers will know that
157+
you are available for engagement opportunities.
157158
</p>
158159
</div>
159160

src/apps/profiles/src/member-profile/profile-header/ProfileHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/* eslint-disable complexity */
2+
/* eslint-disable unicorn/no-null */
23
import { Dispatch, FC, SetStateAction, useEffect, useMemo, useState } from 'react'
34
import { Location, useLocation, useSearchParams } from 'react-router-dom'
45
import { KeyedMutator } from 'swr'
@@ -7,7 +8,6 @@ import moment from 'moment'
78
import {
89
NamesAndHandleAppearance,
910
useMemberTraits,
10-
useProfileCompleteness,
1111
UserProfile,
1212
UserRole,
1313
UserTrait,

0 commit comments

Comments
 (0)