From e4c5147ffa92d8dd912b192f75b5fe3aaa16e220 Mon Sep 17 00:00:00 2001 From: Albin Henriksson <albhe428@student.liu.se> Date: Fri, 30 Apr 2021 21:21:27 +0200 Subject: [PATCH] Fix slide display bug --- client/src/pages/presentationEditor/PresentationEditorPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/presentationEditor/PresentationEditorPage.tsx b/client/src/pages/presentationEditor/PresentationEditorPage.tsx index 08d2ec7e..0fb7a72f 100644 --- a/client/src/pages/presentationEditor/PresentationEditorPage.tsx +++ b/client/src/pages/presentationEditor/PresentationEditorPage.tsx @@ -243,7 +243,7 @@ const PresentationEditorPage: React.FC = () => { <Content leftDrawerWidth={leftDrawerWidth} rightDrawerWidth={rightDrawerWidth}> <InnerContent> - {competitionLoading && <SlideDisplay variant="editor" activeViewTypeId={activeViewTypeId} />} + <SlideDisplay variant="editor" activeViewTypeId={activeViewTypeId} /> </InnerContent> </Content> <Menu -- GitLab