From a7d032bb29f38be4bb38ec127aabcd32d5f081c8 Mon Sep 17 00:00:00 2001 From: sylenien Date: Mon, 23 May 2022 16:24:31 +0200 Subject: [PATCH] fix(ui): rename file --- frontend/app/components/Session_/PlayerBlock.js | 3 ++- .../app/components/Session_/{Subheader.tsx => Subheader.js} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename frontend/app/components/Session_/{Subheader.tsx => Subheader.js} (100%) diff --git a/frontend/app/components/Session_/PlayerBlock.js b/frontend/app/components/Session_/PlayerBlock.js index cd14b2026..ed2db36b5 100644 --- a/frontend/app/components/Session_/PlayerBlock.js +++ b/frontend/app/components/Session_/PlayerBlock.js @@ -28,9 +28,10 @@ import Fetch from './Fetch'; import Exceptions from './Exceptions/Exceptions'; import LongTasks from './LongTasks'; import Inspector from './Inspector'; -import styles from './playerBlock.css'; import SubHeader from './SubHeader'; +import styles from './playerBlock.css'; + @connect(state => ({ fullscreen: state.getIn([ 'components', 'player', 'fullscreen' ]), bottomBlock: state.getIn([ 'components', 'player', 'bottomBlock' ]), diff --git a/frontend/app/components/Session_/Subheader.tsx b/frontend/app/components/Session_/Subheader.js similarity index 100% rename from frontend/app/components/Session_/Subheader.tsx rename to frontend/app/components/Session_/Subheader.js