Skip to content

Commit

Permalink
remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
EshaanAgg committed Jun 20, 2024
1 parent 72b6576 commit 224c784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchexec/tablegenerator/react-table/src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export const constructHashURL = (url, params = {}) => {
* @param {Object} params - The parameters to be set or updated in the URL hash
* @returns {void}
*/
const setURLParameter = (params = {}, history = undefined) => {
const setURLParameter = (params = {}) => {
const { newUrl } = constructHashURL(window.location.href, params);
window.history.pushState({}, "", newUrl);
window.location.href = newUrl;
Expand Down

0 comments on commit 224c784

Please sign in to comment.