Shopify Navigation Menu cannot set active menu

Hello again @rajweb - i tried, but still not working.
I forgot to re-mention (as i tried again) the basic nav logic from documentation.
It still not setting the Settings nav unless you click it and visit the actual page which is the default behavior.

const itemsLink = AppLink.create(app, {
      label: 'Images',
      destination: '/images/alt_text/edit',
    });
    
    const settingsLink = AppLink.create(app, {
      label: 'Settings',
      destination: '/settings/general',
    });
    
    const navigationMenu = NavigationMenu.create(app, {
      items: [itemsLink, settingsLink],
      active: settingsLink,
    });

Here are the versions i currently used:

pin "@shopify/app-bridge", to: "https://ga.jspm.io/npm:@shopify/app-bridge@3.7.10/index.js"

pin "@shopify/app-bridge/utilities", to: "https://ga.jspm.io/npm:@shopify/app-bridge@3.7.10/utilities/index.js"