Theme customizer hiding sections

add_filter( 'customizer_widgets_section_args', function ( $args ) {
  $args['active_callback'] = '__return_true';
  return $args;
} );

Adding this to my functions.php file ensured that the settings stayed visible no matter what page was visible.