From 76902a752f470accff94834412b36aebddf9c53f Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Fri, 17 Jul 2020 15:56:07 -0600 Subject: [PATCH] CallPreview2 -> CallPreview --- src/components/views/voip/CallContainer.tsx | 4 ++-- .../views/voip/{CallPreview2.tsx => CallPreview.tsx} | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) rename src/components/views/voip/{CallPreview2.tsx => CallPreview.tsx} (97%) diff --git a/src/components/views/voip/CallContainer.tsx b/src/components/views/voip/CallContainer.tsx index 0e901fac7d..6814332ed0 100644 --- a/src/components/views/voip/CallContainer.tsx +++ b/src/components/views/voip/CallContainer.tsx @@ -16,7 +16,7 @@ limitations under the License. import React from 'react'; import IncomingCallBox2 from './IncomingCallBox2'; -import CallPreview from './CallPreview2'; +import CallPreview from './CallPreview'; import * as VectorConferenceHandler from '../../../VectorConferenceHandler'; interface IProps { @@ -34,4 +34,4 @@ export default class CallContainer extends React.PureComponent { ; } -} \ No newline at end of file +} diff --git a/src/components/views/voip/CallPreview2.tsx b/src/components/views/voip/CallPreview.tsx similarity index 97% rename from src/components/views/voip/CallPreview2.tsx rename to src/components/views/voip/CallPreview.tsx index cf8a305fbc..e5b24e3a3e 100644 --- a/src/components/views/voip/CallPreview2.tsx +++ b/src/components/views/voip/CallPreview.tsx @@ -15,8 +15,6 @@ See the License for the specific language governing permissions and limitations under the License. */ -// TODO: Rename on launch: https://github.com/vector-im/riot-web/issues/14231 - import React from 'react'; import CallView from "./CallView";