Skip to content

Commit

Permalink
fixed broken imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry-Ross committed Mar 6, 2024
1 parent f2cd805 commit 85142ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hooks/useFormatDates.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useEffect, useState } from "react";
import {
formatEventDate,
formatEventLongDate,
formatRelativeEventDate,
} from "helpers/dates";
import { useEffect, useState } from "react";
} from "../helpers/dates";
import { EventInfo } from "../services/server/events";

export const useFormatDates = (event: EventInfo, formatLong: boolean) => {
Expand Down

0 comments on commit 85142ba

Please sign in to comment.