Skip to content

Commit c793829

Browse files
committed
More lint fixes
1 parent 8fc190f commit c793829

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function main() {
4545
let configCopy = JSON.parse(JSON.stringify(config));
4646
configCopy.source = source;
4747
viewer.addImage(configCopy);
48-
};
48+
}
4949

5050
const newLocation = decodeURIComponent(url.href);
5151

src/ome.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import pMap from "p-map";
22
import * as zarr from "zarrita";
33
import type { ImageLayerConfig, OnClickData, SourceData } from "./state";
4-
import { Matrix4 } from "math.gl";
54

65
import { ZarrPixelSource } from "./ZarrPixelSource";
76
import * as utils from "./utils";

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ export function applyCoordinateTransformations(
276276
dx = transform.translation.at(-1);
277277
dy = transform.translation.at(-2);
278278
}
279-
};
279+
}
280280
}
281281
// Deck.gl translate happens BEFORE scale (opposite of OME-Zarr)
282282
if (dx !== undefined && dy !== undefined) {

0 commit comments

Comments
 (0)