Skip to content

Commit

Permalink
Update update.js
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed Aug 25, 2023
1 parent afbda34 commit ea109c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/progress/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const update = (newDatasetName, previousDatasetName) => {
} else throw new Error("No previous dataset name provided");
};

function updateURLParams(paramsToUpdate) {
export function updateURLParams(paramsToUpdate) {
const params = new URLSearchParams(location.search);
for (let key in paramsToUpdate) {
const value = paramsToUpdate[key];
Expand Down

0 comments on commit ea109c8

Please sign in to comment.