Skip to content

Commit

Permalink
chore: remove unused code advanced features
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronm-2112 committed Feb 3, 2025
1 parent 0290409 commit 07e5e7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ document.querySelector("#btn-pull-ds-manifest").addEventListener("click", async

function createAgentCHeckObserver(targetDiv, successCallback) {
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
mutations.forEach(() => {
const textToCheck = "The Pennsieve Agent is running and ready to upload!";
if (targetDiv.textContent.includes(textToCheck)) {
successCallback();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ while (!window.baseHtmlLoaded) {
}

import api from "../others/api/api";
import { addRows, removeRows } from "../../stores/slices/tableRowSlice";
import { addRows } from "../../stores/slices/tableRowSlice";
import { clientError } from "../others/http-error-handler/error-handler";
import { swalConfirmAction, swalShowError, swalShowInfo } from "../utils/swal-utils";

Expand All @@ -25,7 +25,7 @@ document

document
.querySelector("#compare-local-remote-confirm-local-dataset-btn")
.addEventListener("click", (e) => {
.addEventListener("click", () => {
document.querySelector("#compare-local-remote-confirm-local-dataset-btn").style.display =
"none";
let nextQuestion = document.querySelector("#compare-local-remote-confirm-local-dataset-btn")
Expand Down

0 comments on commit 07e5e7d

Please sign in to comment.