Skip to content

Commit

Permalink
🚑 Hotfix build
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Dec 3, 2023
1 parent a29e5bb commit 77b17f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/webapp/src/components/jobs/JobsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export default function JobsTable() {
console.log("error jobs..");
}

const transformedJobs = jobs?.map(job => ({
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const transformedJobs = jobs?.map((job: any) => ({
method: '', // replace with actual value
url: '', // replace with actual value
status: job.status,
Expand Down

0 comments on commit 77b17f8

Please sign in to comment.