We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc4f4c commit d9559d0Copy full SHA for d9559d0
src/templates/post.js
@@ -13,9 +13,7 @@ export default function Template({ data, pageContext }) {
13
const { markdownRemark } = data // data.markdownRemark holds your post data
14
const { frontmatter, html } = markdownRemark
15
const { previous, next } = pageContext
16
- constants.track("App.Post.View", {
17
- postName: frontmatter.title,
18
- })
+ constants.track(`App.Post.View:${frontmatter.title}`)
19
return (
20
<Layout>
21
<SEO
0 commit comments