Tripzzy configures the default view mode to list view. To display the default view mode to grid view in the Tripzzy archive page. Please add the following code below to display the default view mode as grid view:
add_filter( 'tripzzy_filter_default_view_mode', function( $view_mode ) {
return 'grid';
} );