Hi,
To fix the error you need to add updated class to the time tag.
You can do it by making the changes in the child theme.
You need to replace the following line in /inc/template-tags.php file line number 169 in function athemes_posted_on
Add the class updated so that it looks like the below:-
function athemes_posted_on() {
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
Hope it helps
Thanks