NTP-42029 | Final changes in UI (#146)

* NTP-42029 | Changes in Houston-ui.

* NTP-42029 | Completed first set of corrections.

* NTP-42029 | Fixing lint checks.

* NTP-42029 | Lint fixes.

* NTP-42029 | Resolving comments.

* NTP-42029 | Added error absence validatin for submit activeness.

* NTP-42029 | Changes for fetching team_type.
This commit is contained in:
Amitesh Vijaykumar Magar
2025-02-26 16:59:22 +05:30
committed by GitHub
parent 944a8bcad4
commit 3f3ae0bbb3
2 changed files with 2 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ const TeamDetails: React.FC = () => {
{teamDetails?.name}
</Typography>{' '}
<Typography variant="h3" className={styles['team-type-label']}>
{teamDetails?.teamType}
{teamDetails?.team_type}
</Typography>
<Typography variant="h5" className={styles['member-div']}>
SLACK DETAILS

View File

@@ -92,7 +92,7 @@ export interface TeamsDetail {
oncall?: { id: string; name: string };
pse_oncall?: { id: string; name: string };
slack_channel?: { id: string; name: string };
teamType?: string;
team_type?: string;
}
export interface AppState {
openDialog: boolean;