@@ -93,7 +93,6 @@ export function Component() {
9393 const primarySectorOptions = usePrimarySector ( ) ;
9494
9595 const {
96- // pending: fetchingDref,
9796 response : drefResponse ,
9897 } = useRequest ( {
9998 skip : isFalsyString ( finalReportId ) ,
@@ -670,7 +669,6 @@ export function Component() {
670669 headingLevel = { 3 }
671670 childrenContainerClassName = { styles . proposedActions }
672671 >
673- < div className = { styles . actionTitleLabel } />
674672 < div className = { styles . actionTitleLabel } >
675673 { strings . proposedActionsSector }
676674 </ div >
@@ -681,7 +679,7 @@ export function Component() {
681679 { strings . priorityActionsBudget }
682680 </ div >
683681 < div className = { styles . actionTitleLabel } >
684- Expenditure
682+ { strings . expenditure }
685683 </ div >
686684 { groupedProposedActions . map ( ( proposedAction ) => (
687685 < Fragment key = { proposedAction . key } >
@@ -694,15 +692,15 @@ export function Component() {
694692 < img
695693 className = { styles . icon }
696694 src = { proposedAction . icon }
697- alt = ""
695+ alt = { strings . imageIcon }
698696 />
699697 < div className = { styles . title } >
700698 { proposedAction . title }
701699 </ div >
702700 </ div >
703701 { proposedAction . actions . map ( ( action ) => (
704702 < Fragment key = { action . id } >
705- { action . activities . map ( ( activity , i ) => (
703+ { action . activities . map ( ( activity , index ) => (
706704 < Fragment key = { activity . id } >
707705 < SelectOutput
708706 className = { styles . sector }
@@ -715,7 +713,7 @@ export function Component() {
715713 < div className = { styles . activity } >
716714 { activity . activity }
717715 </ div >
718- { i === 0 && (
716+ { index === 0 && (
719717 < div
720718 className = { styles . budget }
721719 style = { { gridRow : `span ${ action . activities . length } ` } }
@@ -726,7 +724,7 @@ export function Component() {
726724 />
727725 </ div >
728726 ) }
729- { i === 0 && (
727+ { index === 0 && (
730728 < div
731729 className = { styles . budget }
732730 style = { { gridRow : `span ${ action . activities . length } ` } }
0 commit comments