diff --git a/client/homebrew/pages/vaultPage/vaultPage.jsx b/client/homebrew/pages/vaultPage/vaultPage.jsx
index 377260d0f..b48a38360 100644
--- a/client/homebrew/pages/vaultPage/vaultPage.jsx
+++ b/client/homebrew/pages/vaultPage/vaultPage.jsx
@@ -435,22 +435,27 @@ const VaultPage = (props) => {
}
return (
-
-
- {`Brews found: `}
- {totalBrews}
-
- {brewCollection.map((brew, index) => (
-
- ))}
- {renderPaginationControls()}
-
- );
- };
+
+
+ {`Brews found: `}
+ {totalBrews}
+
+ {brewCollection.map((brew, index) => {
+ const processedAuthors = brew.authors.map(author =>
+ author.includes('@') ? 'hidden' : author
+ );
+ return (
+
+ );
+ })}
+ {renderPaginationControls()}
+
+ );
+ };
return (