You can disable Two Factor Authentication by placing the following line in your constants.php file.
define( 'DISABLE_MFA', TRUE );
If you do not have a constants.php file, you can create one and add the following:
<?php
define( 'DISABLE_MFA', TRUE );
Just be sure to remove this line once you want 2FA re-enabled.