Skip to content

Commit

Permalink
Minor class name correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkguidaven committed Feb 7, 2025
1 parent d594e5d commit a498ff1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type FormData = {
specificApproach: string;
};

const BluePrintFormRadio = ( {
const BlueprintFormRadio = ( {
label,
checked,
onChange,
Expand Down Expand Up @@ -122,7 +122,7 @@ const BlueprintForm: React.FC< Props > = ( { onContinue } ) => {
>
<div className="blueprint-form__radio-group">
{ topGoalOptions.map( ( option ) => (
<BluePrintFormRadio
<BlueprintFormRadio
key={ `goal-option-${ option.value }` }
label={ option.label }
checked={ formData.topGoal === option.value }
Expand All @@ -138,7 +138,7 @@ const BlueprintForm: React.FC< Props > = ( { onContinue } ) => {
>
<div className="blueprint-form__radio-group">
{ mainGoal2025Options.map( ( option ) => (
<BluePrintFormRadio
<BlueprintFormRadio
key={ `main-goal-2025-option-${ option.value }` }
label={ option.label }
checked={ formData.mainGoal2025 === option.value }
Expand All @@ -156,7 +156,7 @@ const BlueprintForm: React.FC< Props > = ( { onContinue } ) => {
>
<div className="blueprint-form__radio-group">
{ workModelOptions.map( ( option ) => (
<BluePrintFormRadio
<BlueprintFormRadio
key={ `work-model-option-${ option.value }` }
label={ option.label }
checked={ formData.workModel === option.value }
Expand Down

0 comments on commit a498ff1

Please sign in to comment.