Just convert the {title} to a string literal and that will do it. You can't use {title} in metatags that way because it renders it as an object before converting it to a string.
<title>{`${title}`}</title>