diff --git a/ts/components/About.tsx b/ts/components/About.tsx index e24a88ce12..5b8020394d 100644 --- a/ts/components/About.tsx +++ b/ts/components/About.tsx @@ -35,7 +35,6 @@ export const About = ({ platform={platform} theme={theme} executeMenuRole={executeMenuRole} - title={i18n('aboutSignalDesktop')} >
diff --git a/ts/components/App.tsx b/ts/components/App.tsx index 7aaa9fe3a2..c0d94eefce 100644 --- a/ts/components/App.tsx +++ b/ts/components/App.tsx @@ -135,7 +135,6 @@ export const App = ({ return (
@@ -192,7 +191,6 @@ export const DebugLogWindow = ({ platform={platform} theme={theme} executeMenuRole={executeMenuRole} - title={i18n('debugLog')} >
diff --git a/ts/components/Preferences.tsx b/ts/components/Preferences.tsx index e2837802e2..7ecc5e882e 100644 --- a/ts/components/Preferences.tsx +++ b/ts/components/Preferences.tsx @@ -1029,7 +1029,6 @@ export const Preferences = ({ platform={platform} theme={theme} executeMenuRole={executeMenuRole} - title={i18n('signalDesktopPreferences')} >
diff --git a/ts/components/TitleBarContainer.tsx b/ts/components/TitleBarContainer.tsx index 9bb977ff9b..6b7b33ae73 100644 --- a/ts/components/TitleBarContainer.tsx +++ b/ts/components/TitleBarContainer.tsx @@ -24,7 +24,6 @@ export type ExecuteMenuRoleType = ( ) => void; export type PropsType = Readonly<{ - title: string; theme: ThemeType; isMaximized?: boolean; isFullScreen?: boolean; @@ -106,7 +105,6 @@ function convertMenu( export const TitleBarContainer = (props: PropsType): JSX.Element => { const { - title, theme, isMaximized, isFullScreen, @@ -170,7 +168,6 @@ export const TitleBarContainer = (props: PropsType): JSX.Element => {