Skip to content

Commit 226ca00

Browse files
committed
fix imports
1 parent 14955b7 commit 226ca00

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/history/HistoryListItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import React, { useMemo } from "react";
22
import { useTranslation } from "next-i18next";
33
import LocalizedDate from "../LocalizedDate";
44
import { TFunction } from "i18next";
5-
import { HistoryListItemProps, PerformedBy } from "../../types/history";
6-
import { isM2M, isUser } from "../../utils/typeGuards";
5+
import { HistoryListItemProps, PerformedBy } from "../../types/History";
6+
import { isM2M, isUser } from "../../utils/TypeGuards";
77
import { M2MSubject } from "../../types/enums";
88

99
const getDisplayName = (user: PerformedBy, t: TFunction): string => {

src/utils/TypeGuards.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PerformedBy } from "../types/history";
1+
import { PerformedBy } from "../types/History";
22
import { M2M, User } from "../types/User";
33

44
export function isM2M(user: PerformedBy): user is M2M {

0 commit comments

Comments
 (0)