diff --git a/app/components/Attribute.tsx b/app/components/Attribute.tsx index d67b6f5..fad9457 100644 --- a/app/components/Attribute.tsx +++ b/app/components/Attribute.tsx @@ -6,41 +6,35 @@ export interface AttributeProps { name: string; value: string; isCopyable?: boolean; - link?: string; - suppressHydrationWarning?: boolean; } -export default function Attribute({ - name, - value, - link, - isCopyable, - suppressHydrationWarning, -}: AttributeProps) { +export default function Attribute({ name, value, isCopyable }: AttributeProps) { return ( -
-
- {link ? ( - - {name} - - ) : ( - name +
+
+ {name}
{isCopyable ? ( ) : ( - value +
+ {value} +
)}