nextjs: When passing character arguments in router.push

1. When passing character arguments in router.push
– fail if there is a space in the character argument

2. before
– title:item.name

await router.push({ 
    pathname: (item.path), 
    query: {counter: selected.counter, title:item.name },
    }, item.path);

3. after
– title:`${item.name}`

await router.push({ 
    pathname: (item.path), 
    query: {counter: selected.counter, title:`${item.name}` },
    }, item.path);