diff --git a/stylesheets/components/CallingScreenSharingController.scss b/stylesheets/components/CallingScreenSharingController.scss index 8a1ffffb9..bc1899132 100644 --- a/stylesheets/components/CallingScreenSharingController.scss +++ b/stylesheets/components/CallingScreenSharingController.scss @@ -11,7 +11,6 @@ &__text { @include font-body-2; - color: $color-gray-05; overflow: hidden; text-overflow: ellipsis; user-select: none; diff --git a/ts/windows/screenShare/app.tsx b/ts/windows/screenShare/app.tsx index 0dc140119..0f29bcca6 100644 --- a/ts/windows/screenShare/app.tsx +++ b/ts/windows/screenShare/app.tsx @@ -13,12 +13,14 @@ const { ScreenShareWindowProps } = window.Signal; strictAssert(ScreenShareWindowProps, 'window values not provided'); ReactDOM.render( - window.SignalContext.executeMenuRole('close')} - onStopSharing={ScreenShareWindowProps.onStopSharing} - presentedSourceName={ScreenShareWindowProps.presentedSourceName} - />, +
+ window.SignalContext.executeMenuRole('close')} + onStopSharing={ScreenShareWindowProps.onStopSharing} + presentedSourceName={ScreenShareWindowProps.presentedSourceName} + /> +
, document.getElementById('app') );