Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 21, 2023
1 parent 2f0b783 commit 20d779b
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions src/renderer/src/stories/pages/settings/SettingsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ import projectGlobalSchema from "../../../../../../schemas/json/project/globals.

import { validateDANDIApiKey } from "../../../validation/dandi";

const schema = merge(projectGlobalSchema, {
properties: {
DANDI: dandiGlobalSchema,
const schema = merge(
projectGlobalSchema,
{
properties: {
DANDI: dandiGlobalSchema,
},
required: ["DANDI"],
},
required: ["DANDI"]
}, {
arrays: true
});
{
arrays: true,
}
);

console.log(schema)
console.log(schema);

import { Button } from "../../Button.js";
import { global } from "../../../progress/index.js";
Expand Down

0 comments on commit 20d779b

Please sign in to comment.