As it stands, the project is utilizing 2 different ways to create an optional property:
interface Props { name: string}
const Test = ({name: ''}: Props) {}
interface Props { name?: string}
const Test = ({ name }: Props) {}
Subjective opinion aside, one should be swiftly decided on.