Remove edit post link from static front page

Try

function foo_edit_post_link($link) {
  if (is_home()) {
   return FALSE;
  }
    return $link;
}