Hello!
Sorry for the delay. I use my own theme and it is not a block based theme.
The infinite scroll is registered in functions.php:
add_action('after_setup_theme', 'theme_infinite_scroll');
function theme_infinite_scroll()
{
add_theme_support('infinite-scroll', array(
'container' => 'content',
'type' => 'scroll',
'footer' => false
));
}
The infinite scroll works for posts everywhere, e.g. both on archive, and category pages.