diff --git a/src/screens/SubTags/SubTags.tsx b/src/screens/SubTags/SubTags.tsx index 1ff1f801f5..a16109ec4a 100644 --- a/src/screens/SubTags/SubTags.tsx +++ b/src/screens/SubTags/SubTags.tsx @@ -127,6 +127,7 @@ function SubTags(): JSX.Element { }, }); + /* istanbul ignore next -- @preserve */ if (data) { toast.success(t('tagCreationSuccess') as string); subTagsRefetch(); @@ -134,6 +135,7 @@ function SubTags(): JSX.Element { setAddSubTagModalIsOpen(false); } } catch (error: unknown) { + /* istanbul ignore next -- @preserve */ if (error instanceof Error) { toast.error(error.message); } @@ -154,7 +156,8 @@ function SubTags(): JSX.Element { } const subTagsList = - subTagsData?.getChildTags.childTags.edges.map((edge) => edge.node) ?? []; + subTagsData?.getChildTags.childTags.edges.map((edge) => edge.node) ?? + /* istanbul ignore next -- @preserve */ []; const parentTagName = subTagsData?.getChildTags.name; @@ -392,6 +395,7 @@ function SubTags(): JSX.Element { next={loadMoreSubTags} hasMore={ subTagsData?.getChildTags.childTags.pageInfo.hasNextPage ?? + /* istanbul ignore next -- @preserve */ false } loader={} @@ -403,15 +407,16 @@ function SubTags(): JSX.Element { hideFooter={true} getRowId={(row) => row.id} slots={{ - noRowsOverlay: /* istanbul ignore next */ () => ( - - {t('noTagsFound')} - - ), + noRowsOverlay: + /* istanbul ignore next -- @preserve */ () => ( + + {t('noTagsFound')} + + ), }} sx={dataGridStyle} getRowClassName={() => `${styles.rowBackground}`}