OSC Listener not functioning

Am I missing something really simple here as I can't get this to work...

My custom module has a function:


var rootKeyLabel = { 'rootKey': '/rootKey/Label' }

function addrootKeyLabel(keyboardText) {
    console.log("address that rootKeyLabel is sent to is  ", rootKeyLabel);
    receiveOsc({
        address: rootKeyLabel,

        args: [
            { type: 's', value: keyboardText }
        ]
    });
    console.log("key Name sent to Panel by addRootKeyLabel is ", keyboardText);
    return;
}

My text widget is set up like this:

And my console logs this:
image

But the label will not update - what am I missing here??!

address should be
'/rootKey/Label'
not
{ 'rootKey': '/rootKey/Label' }

Of course.... can't believe I didn't spot that!