Skip to content

Commit

Permalink
run prettier against files
Browse files Browse the repository at this point in the history
  • Loading branch information
robertKozik committed Oct 30, 2023
1 parent 7309b93 commit 6f6ecd0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/HeaderGap/index.desktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class HeaderGap extends PureComponent {
<View style={styles.globalNavigation} />
<View style={styles.headerGapLhnRight} />
</View>
);
);
}
return <View style={[styles.headerGap, ...this.props.styles]} />;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/HeaderGap/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, {PureComponent} from 'react';
import {View} from 'react-native';
import styles from '@styles/styles';
import stylePropTypes from '@styles/stylePropTypes';
import styles from '@styles/styles';

const propTypes = {
/** Styles to apply to the HeaderGap */
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icon/Expensicons.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ import EReceiptIcon from '@assets/images/eReceiptIcon.svg';
import Exclamation from '@assets/images/exclamation.svg';
import Exit from '@assets/images/exit.svg';
import Expand from '@assets/images/expand.svg';
import ExpensifyAppIcon from '@assets/images/expensify-app-icon.svg';
import ExpensifyFooterLogoVertical from '@assets/images/expensify-footer-logo-vertical.svg';
import ExpensifyFooterLogo from '@assets/images/expensify-footer-logo.svg';
import ExpensifyWordmark from '@assets/images/expensify-wordmark.svg';
Expand Down Expand Up @@ -126,7 +127,6 @@ import Users from '@assets/images/users.svg';
import Wallet from '@assets/images/wallet.svg';
import Workspace from '@assets/images/workspace-default-avatar.svg';
import Zoom from '@assets/images/zoom.svg';
import ExpensifyAppIcon from '@assets/images/expensify-app-icon.svg';
import LoungeAccess from './svgs/LoungeAccessIcon';

export {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/sidebar/SidebarScreen/BaseSidebarScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import React from 'react';
import {View} from 'react-native';
import ScreenWrapper from '@components/ScreenWrapper';
import * as Browser from '@libs/Browser';
import getPlatform from '@libs/getPlatform';
import Performance from '@libs/Performance';
import GlobalNavigation from '@pages/home/sidebar/GlobalNavigation';
import SubNavigation from '@pages/home/sidebar/SubNavigation/SubNavigation';
import styles from '@styles/styles';
import Timing from '@userActions/Timing';
import CONST from '@src/CONST';
import getPlatform from '@libs/getPlatform';

const propTypes = {
/** Children to wrap (floating button). */
Expand Down
4 changes: 2 additions & 2 deletions src/pages/home/sidebar/SignInButton.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* eslint-disable rulesdir/onyx-props-must-have-default */
import React from 'react';
import {View} from 'react-native';
import Avatar from '@components/Avatar';
import * as Expensicons from '@components/Icon/Expensicons';
import PressableWithoutFeedback from '@components/Pressable/PressableWithoutFeedback';
import useLocalize from '@hooks/useLocalize';
import styles from '@styles/styles';
import * as Session from '@userActions/Session';
import CONST from '@src/CONST';
import Avatar from '@components/Avatar';
import * as Expensicons from '@components/Icon/Expensicons';

function SignInButton() {
const {translate} = useLocalize();
Expand Down

0 comments on commit 6f6ecd0

Please sign in to comment.