CPT archive redirects to single post

The URL of your archive is https://inthebunch.co.za/livestreams/.

Have a look at the docs for register_post_type, specifically, the description for the has_archive argument:

has_archive
(boolean or string) (optional) Enables post type archives. Will use $post_type as archive slug by default.
Default: false

In the case of your code, $post_type is livestreams:

register_post_type( "livestreams", $args );

If you want to change that value, you can supply a string for has_archive:

"has_archive" => "live-stream",