Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/components/ValidationResults.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Grid, Alert, Table } from "@trussworks/react-uswds"

const createDownloadableResult = (
filename,
coreVersion,
schemaVersion,
startTime,
endTime,
Expand All @@ -14,7 +13,6 @@ const createDownloadableResult = (
) => {
const contents = [
`Validating file: ${filename}`,
`Using hpt-validator version ${coreVersion}`,
`Using data dictionary version ${schemaVersion}`,
`Validator run started at ${startTime}`,
`Validator run completed at ${endTime}`,
Expand Down Expand Up @@ -66,13 +64,11 @@ const ValidationResults = ({
schemaDateLabel,
}) => {
const resultsHeaderRef = useRef(null)
const coreVersion = "2.2.0"

const blob = new Blob(
[
createDownloadableResult(
filename,
coreVersion,
schemaVersion,
startTimestamp,
endTimestamp,
Expand Down
Loading