Skip to content

Commit

Permalink
Prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chandra-tacc committed Oct 3, 2023
1 parent d324e4a commit e6baf95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/components/Applications/AppForm/AppForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -501,10 +501,10 @@ export const AppSchemaForm = ({ app }) => {
.flat()
.filter((fileInput) => fileInput.sourceUrl) // filter out any empty values
.map((fileInput) => {
if (isTargetPathEmpty(fileInput.targetPath)){
if (isTargetPathEmpty(fileInput.targetPath)) {
return {
name : fileInput.name,
sourceUrl : fileInput.sourceUrl
name: fileInput.name,
sourceUrl: fileInput.sourceUrl,
};
}
return fileInput;
Expand Down

0 comments on commit e6baf95

Please sign in to comment.