Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinyooky committed Jul 14, 2023
1 parent 5fca5e9 commit 6f9b24e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,9 @@ function BulkDataTransferPanels() {
panelsToUse.panels.map((props) => <BulkDataTransferPanel {...props} key={props.title} />)}
{panelsToUse.links.length > 0 && (
<Paper>
<>
{panelsToUse.links.map((link) =>
React.isValidElement(link) ? link : <Link {...link} key={link.key} url={linkTitleUrlMap[link.title]} />,
)}
</>
{panelsToUse.links.map((link) =>
React.isValidElement(link) ? link : <Link {...link} key={link.key} url={linkTitleUrlMap[link.title]} />,
)}
</Paper>
)}
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import FileBrowserDUA from '../FileBrowserDUA';
import { FilesContext } from './context';
import { MarginBottomDiv } from './style';

// These props were removed but may be used in the future: uuid, hubmap_id, visLiftedUUID
function Files({ files }) {
const { mapped_data_access_level } = useDetailContext();

Expand Down

0 comments on commit 6f9b24e

Please sign in to comment.