Remove log

This commit is contained in:
sigma-andex 2023-01-16 09:24:55 +00:00 committed by Jantxu
parent 2726c118c9
commit 206e7e39a2

View File

@ -31,7 +31,6 @@ export const pushImpl = (path) => (as) => (options) => (routerInstance) => () =>
export function pushImplNoAs(path) {
return (options) => (routerInstance) => () => {
console.log("pushImplNoAs", options);
routerInstance.push(path, undefined, options);
};
}