From d8d0aa7ef6be535dc665155490248cfbf66df784 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Fri, 1 May 2020 21:30:03 +0200 Subject: [PATCH] Removed unnecessary optional property access operator. --- src/quest_editor/controllers/QuestEditorToolBarController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts index a28371fb..bf1279b2 100644 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ b/src/quest_editor/controllers/QuestEditorToolBarController.ts @@ -65,7 +65,7 @@ export class QuestEditorToolBarController extends Controller { // label should update). this.areas = quest_editor_store.current_quest.flat_map(quest => { if (quest) { - return quest?.entities_per_area.flat_map(entities_per_area => { + return quest.entities_per_area.flat_map(entities_per_area => { return list_property( undefined, ...area_store.get_areas_for_episode(quest.episode).map(area => {