From 4ab6cca24aa33e0ec710f8859a8c253a8d223025 Mon Sep 17 00:00:00 2001 From: AyushRanjan Date: Wed, 31 Jan 2024 00:29:36 +0530 Subject: [PATCH] TP-52973 | build fix --- src/Pages/Incidents/IncidentInfo/CreatedInfo.tsx | 2 +- src/Pages/Incidents/IncidentInfo/UpdateInfo.tsx | 2 +- src/Pages/Incidents/types.ts | 1 + src/Pages/Team/partials/TeamResultsTable.tsx | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Pages/Incidents/IncidentInfo/CreatedInfo.tsx b/src/Pages/Incidents/IncidentInfo/CreatedInfo.tsx index 0f7da8b..4346a11 100644 --- a/src/Pages/Incidents/IncidentInfo/CreatedInfo.tsx +++ b/src/Pages/Incidents/IncidentInfo/CreatedInfo.tsx @@ -2,7 +2,7 @@ import { FC } from 'react'; import { Typography } from '@navi/web-ui/lib/primitives'; import { returnFormattedDate } from '@src/services/globalUtils'; import StepperLogTag from '../StepperAssets/StepperLogTag'; -import { CreatedInfoProps } from '../constants'; +import { CreatedInfoProps } from '../types'; import styles from '../Incidents.module.scss'; const renderCreatedInfo = (byPerson, TeamAssigned, updatedAt): JSX.Element => ( diff --git a/src/Pages/Incidents/IncidentInfo/UpdateInfo.tsx b/src/Pages/Incidents/IncidentInfo/UpdateInfo.tsx index 3de9c54..d81778a 100644 --- a/src/Pages/Incidents/IncidentInfo/UpdateInfo.tsx +++ b/src/Pages/Incidents/IncidentInfo/UpdateInfo.tsx @@ -1,7 +1,7 @@ import { FC } from 'react'; import Typography from '@navi/web-ui/lib/primitives/Typography'; import { returnFormattedDate } from '@src/services/globalUtils'; -import { UpdateInfoProps } from '../constants'; +import { UpdateInfoProps } from '../types'; import styles from '../Incidents.module.scss'; const renderUpdateInfo = (fromState, byPerson, updatedAt): JSX.Element => ( diff --git a/src/Pages/Incidents/types.ts b/src/Pages/Incidents/types.ts index e06263f..fc41861 100644 --- a/src/Pages/Incidents/types.ts +++ b/src/Pages/Incidents/types.ts @@ -1,3 +1,4 @@ +import { TeamsData } from '@src/Pages/Team/constants'; import { UpdateIncidentType } from '@src/types'; export interface ContentProps { diff --git a/src/Pages/Team/partials/TeamResultsTable.tsx b/src/Pages/Team/partials/TeamResultsTable.tsx index 54458c0..a4f1fed 100644 --- a/src/Pages/Team/partials/TeamResultsTable.tsx +++ b/src/Pages/Team/partials/TeamResultsTable.tsx @@ -1,7 +1,7 @@ import { useState } from 'react'; import Typography from '@navi/web-ui/lib/primitives/Typography'; import { Accordion, AccordionGroup } from '@navi/web-ui/lib/primitives'; -import { TeamResultsTableProps } from '@src/Pages/Incidents/constants'; +import { TeamResultsTableProps } from '@src/Pages/Incidents/types'; import useClickStream from '@src/services/clickStream'; import { CLICK_STREAM_EVENT_FACTORY } from '@src/services/clickStream/constants/values'; import TeamForm from './TeamForm';