Headless CMS não libera botão para criar

Fiz o passo a passo da documentação para sincronizar a workspace que criei ao headless cms, porém, mesmo após aparecer a mensagem de sucesso o mesmo não me libera o botão para adicionar pagina lá.
Print mostrando como se tivesse dando como sincronizado:

Meu arquivo content-types.json ta assim:

[
  {
    "id": "home",
    "name": "Home Page",
    "configurationSchemaSets": []
  },
  {
    "id": "institutionalPage",
    "name": "Institutional page",
    "configurationSchemaSets": [
      {
        "name": "SEO",
        "configurations": [
          {
            "name": "siteMetadataWithSlug",
            "schema": {
              "title": "Site Metadata",
              "description": "Configure global site metadata",
              "type": "object",
              "widget": {
                "ui:ObjectFieldTemplate": "GoogleSeoPreview"
              },
              "properties": {
                "title": {
                  "title": "Default page title",
                  "description": "Display this title when no other tile is available",
                  "type": "string",
                  "default": "Store Theme | VTEX SFJ"
                },
                "description": {
                  "title": "Meta tag description",
                  "type": "string",
                  "default": "A beautifully designed site for general VTEX stores"
                },
                "titleTemplate": {
                  "title": "Title template to be used in category/product pages",
                  "type": "string",
                  "default": "%s | Store Theme"
                },
                "slug": {
                  "title": "URL Slug",
                  "type": "string",
                  "default": "/landing-page-url"
                }
              }
            }
          }
        ]
      }
    ]
  }
]

A doc que estou me baseando é essa: Part 2: Setting up the VTEX Headless CMS in your FastStore project | FastStore