Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EN-7871] Help need wording - candidate refering context #405

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: ReferedCandidateHelpCardContents
  • Loading branch information
guillobits committed Dec 18, 2024
commit 00697ec9415008d0c076014d8dffa1c23d913874
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FormSchema } from 'src/components/forms/FormSchema';
import {
HelpValue,
ReferingCandidateHelpCardContents,
ReferedCandidateHelpCardContents,
} from 'src/constants/helps';

export const formReferingExpectations: FormSchema<{
@@ -13,7 +13,7 @@ export const formReferingExpectations: FormSchema<{
id: 'helpNeeds',
name: 'helpNeeds',
component: 'select-list',
options: ReferingCandidateHelpCardContents,
options: ReferedCandidateHelpCardContents,
showLabel: false,
isRequired: true,
isMulti: true,
2 changes: 1 addition & 1 deletion src/constants/helps.tsx
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@ export const ParametresHelpCardTitles: {
},
} as const;

export const ReferingCandidateHelpCardContents: (FilterConstant<HelpValue> & {
export const ReferedCandidateHelpCardContents: (FilterConstant<HelpValue> & {
icon: React.ReactNode;
description: string;
})[] = [
Loading