Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahpurcell committed Feb 12, 2025
1 parent 75463e8 commit a217319
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/src/components/detourListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ export const DetourListPage = () => {
// Wait for the detour channels to initialize
const { socket } = useContext(SocketContext)

let activeDetoursMap = useActiveDetours(socket)
let draftDetoursMap = useDraftDetours(socket)
let pastDetoursMap = usePastDetours(socket)
const activeDetoursMap = useActiveDetours(socket)
const draftDetoursMap = useDraftDetours(socket)
const pastDetoursMap = usePastDetours(socket)

const activeDetours: SimpleDetour[] | null = activeDetoursMap
? Object.values(activeDetoursMap).sort(
Expand Down

0 comments on commit a217319

Please sign in to comment.