Skip to content

Commit

Permalink
Modify import AxiosResponse to address issue in newer versions of Axios.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew-Grayson committed Dec 28, 2023
1 parent dd7606f commit 49c25d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/src/tasks/cve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import {
} from 'typeorm';
import * as fs from 'fs';
import * as zlib from 'zlib';
import axios, { AxiosResponse } from 'axios';
import axios from 'axios';
import type { AxiosResponse } from 'axios';
import { CISACatalogOfKnownExploitedVulnerabilities } from 'src/models/generated/kev';

/**
Expand Down

0 comments on commit 49c25d3

Please sign in to comment.