Skip to content

Commit

Permalink
Fix imports and extraneous logs
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed May 29, 2024
1 parent b9e5553 commit 7c2cae1
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 @@ -247,8 +247,6 @@ export class GuidedMetadataPage extends ManagedPage {

const patternPropsToRetitle = ["Ophys.Fluorescence", "Ophys.DfOverF", "Ophys.SegmentationImages"];

console.log("schema", structuredClone(schema), structuredClone(results));

const ophys = schema.properties.Ophys;
if (ophys) {
drillSchemaProperties(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { JSONSchemaForm } from "../../../JSONSchemaForm.js";
import { InstanceManager } from "../../../InstanceManager.js";
import { ManagedPage } from "./ManagedPage.js";
import { onThrow } from "../../../../errors";
import { merge } from "../../utils";
import { merge, sanitize } from "../../utils";
import preprocessSourceDataSchema from "../../../../../../../schemas/source-data.schema";

import { TimeAlignment } from "./alignment/TimeAlignment.js";
Expand All @@ -20,6 +20,8 @@ import { getInfoFromId } from "./utils";
import { Modal } from "../../../Modal";
import Swal from "sweetalert2";

import { baseUrl } from "../../../../server/globals";

const propsToIgnore = {
"*": {
verbose: true,
Expand Down

0 comments on commit 7c2cae1

Please sign in to comment.