Skip to content

Commit

Permalink
Fix incorrect type
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccollum-woolpert committed Mar 25, 2024
1 parent 9385267 commit df0697c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class StorageApiSaveLoadDialogComponent implements OnInit {
});
}

loadSolution(content: { scenario: Scenario; solution: Solution; scenarioName: String }): void {
loadSolution(content: { scenario: Scenario; solution: Solution; scenarioName: string }): void {
this.dialogRef.close({
scenario: this.dispatcherService.objectToScenario(content.scenario),
solution: this.dispatcherService.objectToSolution(content.solution, { json: true }),
Expand Down

0 comments on commit df0697c

Please sign in to comment.