ACS-8055 fix interface typo

This commit is contained in:
Darya Balvanovich
2024-06-17 21:38:57 +02:00
parent 169780cf12
commit 45fd9609c2
2 changed files with 2 additions and 4 deletions
@@ -45,9 +45,7 @@ export class LegalHoldService {
map(({ list }) =>
list?.entries?.map(({ entry }) => ({
id: entry?.id,
name: entry?.name,
reason: entry?.reason,
description: entry?.description
name: entry?.name
}))
),
catchError((err) => throwError(err))
@@ -20,5 +20,5 @@ export interface Hold {
name: string;
reason?: string;
description?: string;
selected?: string;
selected?: boolean;
}