Reset url state on tab click
This commit is contained in:
parent
d8adecf783
commit
a8cf772aaf
|
@ -60,14 +60,12 @@ const tabs: Tabs = {
|
|||
};
|
||||
|
||||
const setUrlTabParam = ( tabKey: string ) => {
|
||||
if ( tabKey === DEFAULT_TAB_KEY ) {
|
||||
navigateTo( {
|
||||
url: getNewPath( {}, MARKETPLACE_PATH, {} ),
|
||||
} );
|
||||
return;
|
||||
}
|
||||
navigateTo( {
|
||||
url: getNewPath( { tab: tabKey } ),
|
||||
url: getNewPath(
|
||||
{ tab: tabKey === DEFAULT_TAB_KEY ? undefined : tabKey },
|
||||
MARKETPLACE_PATH,
|
||||
{}
|
||||
),
|
||||
} );
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue