Skip to content

Commit 5fc22ab

Browse files
committed
Fix liniting error.
1 parent 3f807ef commit 5fc22ab

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

frontend/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ The sky map visualization uses [Aladin Lite v3](https://aladin.cds.unistra.fr/Al
203203
1. Test that outer probability contours remain visible when rotating/panning the sky view
204204

205205
**Dependencies loaded via CDN** (`src/app.html`):
206+
206207
- jQuery 3.7.1 (required by Aladin Lite)
207208
- Aladin Lite v3.7.0-beta
208209
- Plotly 2.35.2 (for coverage plots)

frontend/src/lib/components/visualization/SkyVisualization.svelte

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -548,10 +548,7 @@
548548
selectedAlert?.original_alert?.avgdec !== undefined
549549
) {
550550
try {
551-
aladin.gotoRaDec(
552-
selectedAlert.original_alert.avgra,
553-
selectedAlert.original_alert.avgdec
554-
);
551+
aladin.gotoRaDec(selectedAlert.original_alert.avgra, selectedAlert.original_alert.avgdec);
555552
aladin.setFov(200.0); // Set FOV to 200 degrees like Flask does after loading data
556553
} catch (err) {
557554
console.warn('Failed to center on alert coordinates after data load:', err);

0 commit comments

Comments
 (0)