function validateFields()

in components/register-new-user-with-idcard.tsx [149:160]


function validateFields(props: RegNewUserWithIdCardProps) {
    if (!props.firstname ||
        !props.lastname ||
        !props.dob ||
        !props.screenshot ||
        !props.idCard ||
        !props.userid) {
        return false;
    }

    return true;
}