Skip to content

Commit

Permalink
fix format checking
Browse files Browse the repository at this point in the history
  • Loading branch information
AmiyaSX committed Sep 26, 2024
1 parent fa71d06 commit 13a2735
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/student/map/_components/MapComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ export function MapComponent({
activeBoothId: BoothID | null
hoveredBoothId: BoothID | null
setActiveBoothId: (id: BoothID | null) => void
setHoveredBoothId: (id: BoothID | null) => void,
initialView: { longitude: number, latitude: number, zoom: number }
setHoveredBoothId: (id: BoothID | null) => void
initialView: { longitude: number; latitude: number; zoom: number }
}) {
const mapRef = useRef<MapRef>(null)

Expand Down
2 changes: 1 addition & 1 deletion src/app/student/map/lib/locations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ export const locations: Location[] = [
}
]

export const defaultLocation = locations[0]
export const defaultLocation = locations[0]

0 comments on commit 13a2735

Please sign in to comment.