Htaccess file in routing has duplicate entries

I do not think this will have any impact and i think it will only have a single duplicate entry however when following the SPA Wappler tutorial and recreating exactly as per the tutorial with content pages, the resulting .htaccess file has the following

## Wappler routing
RewriteEngine On
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?(?:/)?$ index.php [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?(?:/)?$ index.php [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?a-page-test(?:/)?$ index.php [QSA,NC,L]
## End Wappler routing

Lines 6, 7 and 8, 9 are exact duplicates. With the first 2 instructions being overruled in Apache by the second 2 instructions, I doubt it would have any impact to the end result at all, but just figured i would bring it to the teams attention.

Maybe you have same paths in the routing tree?

Could you show a screenshot of it?

No problem, here it is, they are the same, but i have tripple checked it against the tutorial and did it pretty much the same

All online page routes made with the routing. Opponent should be page relative so starting with ./ and not just /

I will try it again to double check George, i mean its all working as it should anyway, but im just intrigued to see if it does the same again.