diff --git a/package-lock.json b/package-lock.json index ac2edd3a..c051c395 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "earthdata-download", - "version": "0.0.2", + "version": "0.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "earthdata-download", - "version": "0.0.2", + "version": "0.0.3", "license": "Apache-2.0", "dependencies": { "@babel/eslint-parser": "^7.21.3", diff --git a/package.json b/package.json index 49c7a817..83bb33e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "earthdata-download", - "version": "0.0.2", + "version": "0.0.3", "description": "Earthdata Download is a cross-platform download manager designed to improve how users download Earth Science data. It accepts lists of files from applications like Earthdata Search (https://search.earthdata.nasa.gov/) and enables clients to offer users a streamlined experience when downloading files from their browser.", "repository": "nasa/earthdata-download", "homepage": "https://github.com/nasa/earthdata-download#readme", diff --git a/src/app/components/Layout/Layout.jsx b/src/app/components/Layout/Layout.jsx index 042fb160..41cdb7a9 100644 --- a/src/app/components/Layout/Layout.jsx +++ b/src/app/components/Layout/Layout.jsx @@ -2,7 +2,10 @@ import React, { useContext, useEffect, useState } from 'react' import classNames from 'classnames' import { FaCog } from 'react-icons/fa' import { - VscChromeRestore, VscChromeMaximize, VscChromeMinimize, VscChromeClose + VscChromeRestore, + VscChromeMaximize, + VscChromeMinimize, + VscChromeClose } from 'react-icons/vsc' import Button from '../Button/Button' import DownloadHistory from '../../pages/DownloadHistory/DownloadHistory' diff --git a/src/app/components/Layout/__tests__/Layout.test.js b/src/app/components/Layout/__tests__/Layout.test.js index 4f6b1641..34b32bab 100644 --- a/src/app/components/Layout/__tests__/Layout.test.js +++ b/src/app/components/Layout/__tests__/Layout.test.js @@ -1,8 +1,5 @@ import React from 'react' - -import { - render, screen -} from '@testing-library/react' +import { render, screen } from '@testing-library/react' import userEvent from '@testing-library/user-event' import Layout from '../Layout'