From 3decdfca5810548ddb48a69fa7b538a8c646661f Mon Sep 17 00:00:00 2001 From: nflnkr Date: Thu, 4 Jan 2024 19:11:28 +0300 Subject: [PATCH] fix title adornment icon on untyped question --- .../Questions/Form/FormDraggableList/QuestionPageCard.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pages/Questions/Form/FormDraggableList/QuestionPageCard.tsx b/src/pages/Questions/Form/FormDraggableList/QuestionPageCard.tsx index 6533dad9..ad66debf 100644 --- a/src/pages/Questions/Form/FormDraggableList/QuestionPageCard.tsx +++ b/src/pages/Questions/Form/FormDraggableList/QuestionPageCard.tsx @@ -365,8 +365,6 @@ const IconAndrom = (questionType: QuestionType | null) => { ); default: - return ( - - ); + return null; } };