The importance of redirecting www to non-www URLs is that your content will be served from one URL. www and non-www are considered as different URLs and can lead to duplicate content problems which is not good for SEO.
Therefore, it is important to have all URLs displayed either as www or non-www. It does not matter which one you prefer to use.
You can add the redirect rule below to htaccess file to redirect www to non-www.
NOTE: replace blogiestools.com with your domain and remove space after .com
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.blogiestools\.com [NC]
RewriteRule ^(.*)$ https://blogiestools.com /$1 [L,R=301]
</IfModule>