Skip to content

Commit

Permalink
Merge pull request #277 from ORNL-AMO/issue-275
Browse files Browse the repository at this point in the history
Hotfix - comma breaking compile
  • Loading branch information
nbintertech authored Mar 18, 2024
2 parents 861ff84 + 20f87f1 commit d2c0d46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ export class App extends React.PureComponent<unknown, AppState> {
console.log('Finances available from last year:', currentYearStats.financesAvailable);
console.log('New year awarded budget:', newBudget);
newBudget = this.applyBudgetCarryover(newBudget, currentYearStats);
newBudget = this.applyNewYearCostSavings(newBudget, implementedRenewableProjects, , currentYearStats);
newBudget = this.applyNewYearCostSavings(newBudget, implementedRenewableProjects, currentYearStats);

let newYearTrackedStats: TrackedStats = { ...currentYearStats };
this.setNewYearStats(newYearTrackedStats, newBudget, currentYearStats);
Expand Down

0 comments on commit d2c0d46

Please sign in to comment.