Skip to content

Commit

Permalink
Codestyle update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Apr 8, 2024
1 parent 4a4a86f commit 264dee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SolarEclipse2024.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2073,7 +2073,7 @@ export default defineComponent({
},
},
data() {
const _totalEclipseTimeUTC = new Date("2024-04-08T18:18:00Z");
const totalEclipseTimeUTC = new Date("2024-04-08T18:18:00Z");
const sunPlace = new Place();
sunPlace.set_names(["Sun"]);
Expand Down Expand Up @@ -2182,7 +2182,7 @@ export default defineComponent({
pointerStartPosition: null as { x: number; y: number } | null,
// "Greatest Eclipse"
selectedTime: _totalEclipseTimeUTC.getTime() - 60*60*1000*1.5,
selectedTime: totalEclipseTimeUTC.getTime() - 60*60*1000*1.5,
selectedTimezone: "America/Mexico_City",
location,
selectedLocationText: "Nazas, Mexico",
Expand Down

0 comments on commit 264dee5

Please sign in to comment.