diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss
index 3a7e348fa..c37d708bd 100644
--- a/stylesheets/_modules.scss
+++ b/stylesheets/_modules.scss
@@ -20,11 +20,6 @@
.module-contact-name__profile-number.italic {
font-style: italic;
}
-
-.module-contact-name.compact {
- display: block;
-}
-
// Module: Message
.module-message__error-container {
diff --git a/ts/components/conversation/ContactName.tsx b/ts/components/conversation/ContactName.tsx
index 5216371f3..d370980f2 100644
--- a/ts/components/conversation/ContactName.tsx
+++ b/ts/components/conversation/ContactName.tsx
@@ -13,12 +13,11 @@ type Props = {
profileName?: string | null;
module?: string;
boldProfileName?: boolean;
- compact?: boolean;
shouldShowPubkey: boolean;
};
export const ContactName = (props: Props) => {
- const { pubkey, name, profileName, module, boldProfileName, compact, shouldShowPubkey } = props;
+ const { pubkey, name, profileName, module, boldProfileName, shouldShowPubkey } = props;
const prefix = module || 'module-contact-name';
const convoName = useNicknameOrProfileNameOrShortenedPubkey(pubkey);
@@ -43,7 +42,7 @@ export const ContactName = (props: Props) => {
return (
{
pubkey={PubKey.shorten(author)}
name={authorName}
profileName={authorProfileName}
- compact={true}
shouldShowPubkey={Boolean(props.showPubkeyForAuthor)}
/>
)}
diff --git a/ts/components/conversation/message/message-content/quote/QuoteAuthor.tsx b/ts/components/conversation/message/message-content/quote/QuoteAuthor.tsx
index 01763fa5a..e2b92b348 100644
--- a/ts/components/conversation/message/message-content/quote/QuoteAuthor.tsx
+++ b/ts/components/conversation/message/message-content/quote/QuoteAuthor.tsx
@@ -41,7 +41,6 @@ export const QuoteAuthor = (props: QuoteAuthorProps) => {