Skip to content

Commit

Permalink
fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhupesh-mfsi committed Oct 25, 2023
1 parent aa5c408 commit 9e54719
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default function AddConversation() {
disabled={!name || !name.length || showError}
className={'add-btn font-weight-400 font-size-12 border-radius-4 line-height-24'.concat(
' ',
(!name || !name.length || showError)
!name || !name.length || showError
? 'modal-btn-disabled'
: 'modal-btn-active',
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ export function EnsDetails(props: IEnsDetails) {
<span
data-testid="ens-details-value"
className={'ens-details'.concat(
props.action && props.propertyValue !== "Not set"
props.action && props.propertyValue !== 'Not set'
? ' pointer-cursor text-decoration-underline'
: '',
)}
onClick={() => (props.action ? props.action() : () => { })}
onClick={() => (props.action ? props.action() : () => {})}
>
{props.propertyValue}
</span>
Expand Down

0 comments on commit 9e54719

Please sign in to comment.