diff --git a/src/components/ValidationResults.jsx b/src/components/ValidationResults.jsx index 3a7c162..53fd2bd 100644 --- a/src/components/ValidationResults.jsx +++ b/src/components/ValidationResults.jsx @@ -20,7 +20,6 @@ const createCsvString = (errors, warnings) => */ const ValidationResults = ({ filename, - filenameValid, valid, errors, warnings, @@ -86,33 +85,6 @@ const ValidationResults = ({ > Download results as spreadsheet */} - -

File name

- - {filenameValid ? ( - <> - File name valid:{" "} - {filename} - - ) : ( - <> - File name invalid:{" "} - {filename} -
- - Must match format: - <ein>_<hospitalname>_standardcharges.[json|csv].{" "} - - Click here to use the file name wizard. - - - - )} -

Errors

{ valid: true, filename: "", schemaVersion: "v2.0", - filenameValid: true, fileUrl: "", pageUrl: "", loading: false, @@ -44,7 +43,6 @@ const OnlineValidator = () => { const file = evt.target.files[0] const initialState = { filename: file.name, - filenameValid: validateFilename(file.name), schemaVersion: state.schemaVersion, } setState({ ...state, ...initialState, readError: false, loading: true }) @@ -129,14 +127,6 @@ const OnlineValidator = () => { Loading file {state.filename}...

)} -

- Having trouble formatting your file name? -

-

- - Leverage the file name wizard! - -

{