diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx
index c61e7e7e6c..77016d4fe9 100644
--- a/src/components/ProfileCard.tsx
+++ b/src/components/ProfileCard.tsx
@@ -91,14 +91,20 @@ export function Header({
return {children}
}
-export function Link({did, children}: {did: string} & Omit) {
+export function Link({
+ did,
+ children,
+ style,
+ ...rest
+}: {did: string} & Omit) {
return (
+ style={[a.flex_col, style]}
+ {...rest}>
{children}
)