Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanweiler92 committed Aug 1, 2023
1 parent 3367677 commit 1536e69
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions web/js/mapUI/components/dev-test-mode/dev-test-modal.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
import React from 'react';
// eslint-disable-next-line no-unused-vars
import PixelTestMode from './pixel-test-mode/dev-pixel-test';
import ConsoleTestMode from './dev-console-test';
import PresetConsoleCommands from './dev-preset-console-commands';
// eslint-disable-next-line no-unused-vars
import FindOrbitTracksTestMode from './find-orbit-tracks-mode/dev-find-orbit-tracks-mode';

function DevTestModal() {
return (
<div id="dev-block" className="d-flex flex-column justify-content-center align-items-center">
<ConsoleTestMode />
<PresetConsoleCommands />
<PixelTestMode />
<FindOrbitTracksTestMode />
{/* <PixelTestMode /> */}
{/* <FindOrbitTracksTestMode /> */}
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion web/js/mapUI/mapUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ function MapUI(props) {
<TileMeasurement ui={ui} />
</>
)}
{tileImageTestMode && <TileImagePixelTest />}
{tileImageTestMode && <DevTestButton />}

</>
);
Expand Down

0 comments on commit 1536e69

Please sign in to comment.