Skip to content

Commit

Permalink
Minor style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetlath committed Jan 11, 2022
1 parent d076173 commit a571966
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ONYXKEYS.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,6 @@ export default {
// Stores information about active wallet transfer amount, selectedAccountID, status, etc
WALLET_TRANSFER: 'walletTransfer',

// The policy id of the last workspace whose settings were accessed by the user
// The policyID of the last workspace whose settings were accessed by the user
LAST_ACCESSED_WORKSPACE_POLICY_ID: 'lastAccessedWorkspacePolicyID',
};
2 changes: 1 addition & 1 deletion src/components/HeaderWithCloseButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const propTypes = {
/** Whether we should show the step counter */
shouldShowStepCounter: PropTypes.bool,

/** The guides call task ID to associate with the get assistance button, if we show it */
/** The guides call taskID to associate with the get assistance button, if we show it */
guidesCallTaskID: PropTypes.string,

/** Data to display a step counter in the header */
Expand Down
6 changes: 3 additions & 3 deletions src/pages/GetAssistancePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ const GetAssistancePage = props => (
menuItems={[
{
title: props.translate('getAssistancePage.chatWithConcierge'),
onPress: () => (Report.navigateToConciergeChat()),
onPress: () => Report.navigateToConciergeChat(),
icon: Expensicons.ChatBubble,
shouldShowRightIcon: true,
},
{
title: props.translate('getAssistancePage.requestSetupCall'),
onPress: () => (Navigation.navigate(ROUTES.getRequestCallRoute(props.route.params.taskID))),
onPress: () => Navigation.navigate(ROUTES.getRequestCallRoute(props.route.params.taskID)),
icon: Expensicons.Phone,
shouldShowRightIcon: true,
},
]}
>
<View style={[styles.mv4]}>
<View style={styles.mv4}>
<Text>{props.translate('getAssistancePage.description')}</Text>
</View>
</Section>
Expand Down
3 changes: 2 additions & 1 deletion src/pages/RequestCallPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const propTypes = {
loading: PropTypes.bool,
}),

/** The policy id of the last workspace whose settings the user accessed */
lastAccessedWorkspacePolicyID: PropTypes.string,
};

Expand Down Expand Up @@ -217,7 +218,7 @@ class RequestCallPage extends Component {
title={this.props.translate('requestCallPage.subtitle')}
icon={Illustrations.ConciergeExclamation}
>
<Text style={[styles.mb4]}>
<Text style={styles.mb4}>
{this.props.translate('requestCallPage.description')}
</Text>
<FullNameInputRow
Expand Down

0 comments on commit a571966

Please sign in to comment.