Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronPlave committed Jan 19, 2024
1 parent 1a9c25e commit 46475a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/scheduling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const schedulingGoals = derived(
[selectedSpecId, schedulingGoalsAll],
([$selectedSpecId, $schedulingGoalsAll]) => {
return $schedulingGoalsAll
.filter(goal => goal.scheduling_specification_goal.specification_id === $selectedSpecId)
.filter(goal => goal.scheduling_specification_goal?.specification_id === $selectedSpecId)
.map(goal => {
return {
...goal,
Expand Down

0 comments on commit 46475a9

Please sign in to comment.