How to show more than 3 product recommendations in Dawn theme

I have a total of 5 products on my store in Dawn theme. In the default product page, how to show the remaining 4 in the Product- recommendations section. By default it is 3 products only. I am unable to change it. Any help would be appreciated. Thanks

@nefario - please check product-recommendations template, it may have an option to change 3 to 5 , or check settings schema file

Thanks a lot for your help Suyash. I checked the above options. It didnt work for me. I added a collection of my own instead.

Check the Sectionfile ‘product-recommendations.liquid’.

Find

Change limit=4 to limit=10

Same file, find

{
“type”: “range”,
“id”: “columns_desktop”,
“min”: 1,
“max”: 4,
“step”: 1,
“default”: 4,
“label”: “t:sections.product-recommendations.settings.columns_desktop.label”
},

Change to

{
“type”: “range”,
“id”: “columns_desktop”,
“min”: 1,
“max”: 10,
“step”: 1,
“default”: 10,
“label”: “t:sections.product-recommendations.settings.columns_desktop.label”
},