Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
santoshdasa12345 committed Jan 7, 2025
1 parent bf34dc9 commit b28906d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/client/modules/Investments/EYBLeads/EYBLeadDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const EYBLeadDetails = () => {
</SummaryTable.Row>
<SummaryTable.Row
heading="When do you want to set up?"
children={ camelCaseToSentenceCase(eybLead.landingTimeframe)}
children={camelCaseToSentenceCase(eybLead.landingTimeframe)}
/>
<SummaryTable.Row
heading="Do you know where you want to set up in the UK?"
Expand All @@ -81,15 +81,15 @@ const EYBLeadDetails = () => {
/>
<SummaryTable.Row
heading="How do you plan to expand your business in the UK?"
children={ camelCaseToSentenceCase(eybLead.intent)}
children={camelCaseToSentenceCase(eybLead.intent)}
/>
<SummaryTable.Row
heading="How many people do you want to hire in the UK in the first 3 years?"
children={ camelCaseToSentenceCase(eybLead.hiring)}
children={camelCaseToSentenceCase(eybLead.hiring)}
/>
<SummaryTable.Row
heading="How much do you want to spend on setting up in the first 3 years?"
children={ eybLead.spend}
children={eybLead.spend}
/>
<SummaryTable.Row
heading="Full name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
assertLeadBreadcrumbs,
} from '../../support/assertions'
import { investments } from '../../../../../src/lib/urls'
import { camelCaseToSentenceCase } from '../../../../../src/client/modules/Investments/utils.js'
import { eybLeadFaker } from '../../fakers/eyb-leads'
import { NOT_SET_TEXT } from '../../../../../src/apps/companies/constants'
import { VALUES_VALUE_TO_LABEL_MAP } from '../../../../../src/client/modules/Investments/EYBLeads/constants'
Expand Down

0 comments on commit b28906d

Please sign in to comment.