first History.push
screen
[example code]
const { history } = this.props;
history.push({ pathname: 'workspace?task=14' });
Result URL
[example result]
Chrome URL => http://localhost3000/workspace?task=14
but ... If I send another request here...
next use History.push
[example code]
history.push('workspace?task=15');
next use History push result URL
[example result]
Chrome URL => http:// localhost3000/workspace?task=14?task=15
It overlaps...
No matter how hard I look, I can't find the results. Please help me.