Confluence Global Page doesn't show title of the Global page module

Is there anyone to help take a look at this issue? Thanks.
Jira Global Page: Correct


Confluence Global Page: Incorrect

Hello @YY1

Verify manifest.yml Configuration
Ensure the title property is correctly defined in your manifest.yml file.
modules:
confluence:globalPage:
- key: confluence-global-page
title: “My Confluence Global Page”
icon: “”
resource: your-resource-key
resources:

  • key: your-resource-key
    path: static

Option 2: Use Localization for Titles
i18n:

  • key: en
    path: static/i18n/en.json

en.json file
{
“confluence-global-page.title”: “My Confluence Global Page”
}

Update manifest.yml as like below:
modules:
confluence:globalPage:
- key: confluence-global-page
title: “i18n:confluence-global-page.title”

Thanks for your reply.
My code is as follows, I think it’s Option 1 as you suggested

  confluence:globalPage:
    - key: collaboration-champion-global-page
      resource: global-resource
      render: native
      resolver:
        function: global-resolver
      title: Collaboration Champion
      icon: https://cdn-icons-png.flaticon.com/512/7340/7340754.png
      route: collaboration-champion-global-page

The same code is good for jira, but not for Confluence. Very strange~

@YY1 Try with resizing the image icon 24*24.

Documentation:
https://developer.atlassian.com/platform/forge/ui-kit/components/icon/#:~:text=There%20are%20three%20icon%20sizes,of%20the%20icon%20shape%20itself.