Skip to content

Commit

Permalink
Merge pull request #57 from bcgov/samara-style
Browse files Browse the repository at this point in the history
fix build error
  • Loading branch information
suzalflueck authored Oct 18, 2023
2 parents c3ee12b + 5d2898c commit e223e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/stores/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const useAppStore = defineStore('app', {
return schoolGradesCode.filter(sg1 => schoolGrades.some(sg2 => sg1.schoolGradeCode === sg2.schoolGradeCode));
},
extractGradeLabels(schoolGrades: Grade[]){
const gradeLabels: string[] = schoolGrades.map(grade => grade.label)
const gradeLabels: (string | undefined)[] = schoolGrades.map(grade => grade.label)
return gradeLabels
},
setDistricts(): void {
Expand Down

0 comments on commit e223e23

Please sign in to comment.