From dce6f484997c8eff9bc4ef7a4d42f011f29a6ca7 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 29 Aug 2022 07:17:34 +0200 Subject: [PATCH] moved outside --- src/client/src/pages/todos/[todoId]/index.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/client/src/pages/todos/[todoId]/index.tsx b/src/client/src/pages/todos/[todoId]/index.tsx index a9bd53e..c860faf 100644 --- a/src/client/src/pages/todos/[todoId]/index.tsx +++ b/src/client/src/pages/todos/[todoId]/index.tsx @@ -89,14 +89,14 @@ const TodoDetails: FC = ({ todo }) => { )} - { - todo.description && ( -
- {todo.description} -
- ) - } + { + todo.description && ( +
+ {todo.description} +
+ ) + } ); };