diff --git a/client/src/components/Applications/AppForm/AppForm.jsx b/client/src/components/Applications/AppForm/AppForm.jsx
index df00d755a..1a9d12721 100644
--- a/client/src/components/Applications/AppForm/AppForm.jsx
+++ b/client/src/components/Applications/AppForm/AppForm.jsx
@@ -19,10 +19,7 @@ import { Link } from 'react-router-dom';
import { getSystemName } from 'utils/systems';
import FormSchema from './AppFormSchema';
import {
-<<<<<<< HEAD
checkAndSetDefaultTargetPath,
-=======
->>>>>>> 47de92d3 (Add target path for every file input)
isTargetPathField,
getInputFieldFromTargetPathField,
getQueueMaxMinutes,
@@ -597,24 +594,6 @@ export const AppSchemaForm = ({ app }) => {
{Object.entries(appFields.fileInputs).map(
([name, field]) => {
// TODOv3 handle fileInputArrays https://jira.tacc.utexas.edu/browse/WP-81
-<<<<<<< HEAD
- return isTargetPathField(name) ? (
-
- ) : (
-
-=======
return (
isTargetPathField(name)?
{
placeholder="Browse Data Files"
key={`fileInputs.${name}`}
/>
->>>>>>> 47de92d3 (Add target path for every file input)
);
}
)}