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 => {