Yes, @mcoh in template component, find the head section (mostly -> head.html) where you notice the following line of code or something similar
<title data-sly-test.pageTitle="${page.title}">${pageTitle}</title>
replace it with
<sly data-sly-test.editOrDesign="${wcmmode.edit || wcmmode.design}"/>
<title data-sly-test="${editOrDesign}"> Editor </title> // In editor and design mode
<title data-sly-test="${!editOrDesign && page.title}"> ${page.title}</title> // In preview and publish modes