Skip to content

Commit

Permalink
chore: Update import order in index.ts file
Browse files Browse the repository at this point in the history
  • Loading branch information
Bigismall committed Jun 30, 2024
1 parent f152e27 commit 44bab4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scripts/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import '../styles/styles.scss';
import 'leaflet/dist/leaflet.css';
import '../styles/styles.scss';

import CanvasManager from './CanvasManager';
import DownloadManager from './DownloadManager';
import ExifManager from './ExifManager';
import ImageManager from './ImageManager';
import MapManager from './MapManager';
import PhotoBrowser from './PhotoBrowser';
import MapOptionsManager from './MapOptionsManager';
import { $, $$ } from './dom.ts';
import PhotoBrowser from './PhotoBrowser';
import { warn } from './console.ts';
import { $, $$ } from './dom.ts';

let browser: PhotoBrowser;
let imageManager: ImageManager;
Expand All @@ -19,7 +19,7 @@ let mapManager: MapManager;
let mapOptionsManager: MapOptionsManager;
let downloadManager: DownloadManager;

window.addEventListener('load', function () {
window.addEventListener('load', () => {
const $elements = new Map<string, Element | NodeListOf<HTMLElement> | null>([
['browser', $('#js-browser-input')],
['photo', $('#js-map')],
Expand Down

0 comments on commit 44bab4c

Please sign in to comment.