How to remove a tab in Media Upload page in wordpress

I’m not sure it has to do with enqueueing, if all you want to do is hide the Media Library tab in the media upload window.

I found the following solution (haven’t tried it myself):

function remove_media_library_tab($tabs) {
     unset($tabs['library']);
     return $tabs;
}
add_filter('media_upload_tabs', 'remove_media_library_tab');

The link contains some more details as to why this is what needs to be done