Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
allroundexperts committed Aug 6, 2023
1 parent 0011414 commit 113b6fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/AvatarWithImagePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import * as FileUtils from '../libs/fileDownload/FileUtils';
import getImageResolution from '../libs/fileDownload/getImageResolution';
import PressableWithoutFeedback from './Pressable/PressableWithoutFeedback';
import DotIndicatorMessage from './DotIndicatorMessage';
import { isSafari } from '../libs/Browser';
import {isSafari} from '../libs/Browser';

const propTypes = {
/** Avatar source to display */
Expand Down Expand Up @@ -274,7 +274,7 @@ class AvatarWithImagePicker extends React.Component {
</Tooltip>
</OfflineWithFeedback>
<AttachmentPicker type={CONST.ATTACHMENT_PICKER_TYPE.IMAGE}>
{({openPicker}) => {
{({openPicker}) => {
const menuItems = [
{
icon: Expensicons.Upload,
Expand All @@ -300,7 +300,7 @@ class AvatarWithImagePicker extends React.Component {
},
});
}
return (
return (
<PopoverMenu
isVisible={this.state.isMenuVisible}
onClose={() => this.setState({isMenuVisible: false})}
Expand Down

0 comments on commit 113b6fd

Please sign in to comment.