Newbie question: Strange output before body tag

Hi folks,

just fiddling with my first private neos project after visiting inspiring con and taking the beginners workshop. I have the following output in my generated HTML:

`…

Node /sites/djksuemmernde@live;language=de[SaschaS.DjksuemmernDe:Homepage]
`

How do I deactivate the “Node /sites/djksuemmernde@live;language=de[SaschaS.DjksuemmernDe:Homepage]”, it even shows up in the live workspace… I dug through the original page.ts2 of NEOS but could not find anything that causes this output. Here’s my basic root.ts2:

`include: NodeTypes/*
include: TypoScriptObjects/*

page = Page {

site = ${site}

head {
	stylesheets.site = TYPO3.TypoScript:Template {
		templatePath = 'resource://SaschaS.DjksuemmernDe/Private/Templates/Page/Default.html'
		sectionName = 'stylesheets'
	}

	javascripts.site = TYPO3.TypoScript:Template {
		templatePath = 'resource://SaschaS.DjksuemmernDe/Private/Templates/Page/Default.html'
		sectionName = 'headScripts'
	}
}

body {
	templatePath = 'resource://SaschaS.DjksuemmernDe/Private/Templates/Page/Default.html'
	sectionName = 'body'
	parts {
		menu = SaschaS.DjksuemmernDe:MainMenu
		#breadcrumb = Breadcrumb
	}
	// These are your content areas, you can define as many as you want, just name them and the nodePath.
	content {
		// The default content section
		main = PrimaryContent {
			nodePath = 'main'
		}


		footer = TYPO3.Neos:ContentCollection {
			nodePath = ${q(site).children('footer').property('_path')}
		}
	}

	javascripts.site = TYPO3.TypoScript:Template {
		templatePath = 'resource://SaschaS.DjksuemmernDe/Private/Templates/Page/Default.html'
		sectionName = 'bodyScripts'
	}
}

}`

FIY: It’s NEOS 2.2.3

it’s coming from site = ${site}

page is an array and will output everything and then the site node is being cast to string

Thank you, that fixed it!