Hi @samnagaraj ,
Welcome to the builder.io forum!
We are not quite able to reproduce this possible error but you can try a couple of things
-
Using the
Is
filter instead ofStarts with
. -
When using
params?.item
, we were also getting a similar error and it wasn’t working, so you can also try usingparams.?page
const page = await builder
.get(‘page’, {
userAttributes: {
urlPath: ‘/’ + (params?.page?.join(‘/’) || ‘’),
},
})