diff --git a/src/components/ProfileCard/index.tsx b/src/components/ProfileCard/index.tsx index 62ab03ef124..54d0f6ac2a4 100644 --- a/src/components/ProfileCard/index.tsx +++ b/src/components/ProfileCard/index.tsx @@ -14,11 +14,10 @@ * limitations under the License. */ -import React, { type ReactNode } from 'react'; +import React from 'react'; import styles from './styles.module.css'; type Person = { - className?: string; name: string; city: string; country: string; @@ -31,13 +30,12 @@ type Person = { }; type ProfileProps = { - className?: string; person: Person; }; -function ProfileCard({ person, className }: ProfileProps) { +function ProfileCard({ person }: ProfileProps) { return ( -