Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
badayvedat committed Apr 23, 2024
1 parent bf78732 commit e8ef19d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const WORKFLOW = {
};

export default function getWorkflow(object: any) {

Check warning on line 94 in apps/demo-nextjs-app-router/app/comfy/image_to_image/workflow.tsx

View workflow job for this annotation

GitHub Actions / build

Unexpected any. Specify a different type
let newWorkflow = JSON.parse(JSON.stringify(WORKFLOW));
const newWorkflow = JSON.parse(JSON.stringify(WORKFLOW));
newWorkflow.fal_inputs = {
...newWorkflow.fal_inputs,
...object,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const WORKFLOW = {
};

export default function getWorkflow(object: any) {
let newWorkflow = JSON.parse(JSON.stringify(WORKFLOW));
const newWorkflow = JSON.parse(JSON.stringify(WORKFLOW));
newWorkflow.fal_inputs = {
...newWorkflow.fal_inputs,
...object,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const WORKFLOW = {
};

export default function getWorkflow(object: any) {
let newWorkflow = JSON.parse(JSON.stringify(WORKFLOW));
const newWorkflow = JSON.parse(JSON.stringify(WORKFLOW));
newWorkflow.fal_inputs = {
...newWorkflow.fal_inputs,
...object,
Expand Down

0 comments on commit e8ef19d

Please sign in to comment.