From 7bcc54418922da0f2a5874d06bc2129cbd48fcea Mon Sep 17 00:00:00 2001 From: cv <34649812+cpvalente@users.noreply.github.com> Date: Thu, 10 Jun 2021 14:09:26 +0200 Subject: [PATCH] fix: typo on component import --- client/src/features/editors/Editor.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/features/editors/Editor.jsx b/client/src/features/editors/Editor.jsx index fbbd9e0d5..5571dd728 100644 --- a/client/src/features/editors/Editor.jsx +++ b/client/src/features/editors/Editor.jsx @@ -10,7 +10,7 @@ import MenuBar from 'features/menu/MenuBar'; const EventListWrapper = lazy(() => import('features/editors/list/EventListWrapper') ); -const PlaybackControl = lazy(() => import('features/control/PlaybackButtons')); +const PlaybackControl = lazy(() => import('features/control/PlaybackControl')); const MessageControl = lazy(() => import('features/control/MessageControl')); export default function Editor() {