This seems a template error, have you never modified file at /modules/mod_jsnusers/tmpl/default.php?
Anyway you can solve this issue by change in file /modules/mod_jsnusers/tmpl/default.php at line 62 this
<a href="/ <?php echo $user->getLink(array('Itemid'=>$params->get('profile_menuid', ''))); ?>">
with this
<a href="/<?php echo $user->getLink(array('Itemid'=>$params->get('profile_menuid', ''))); ?>">
(basically you need to remove a single space)