File tree Expand file tree Collapse file tree
course-updates/update-form Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ const UpdateForm = ({
8383 showPopperArrow = { false }
8484 onChange = { ( value ) => {
8585 if ( ! isValidDate ( value ) ) {
86+ /* istanbul ignore next */
8687 return ;
8788 }
8889 // eslint-disable-next-line @typescript-eslint/no-floating-promises
Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ export const useContentSearchResults = ({
187187 // Call this to load more pages. We include some "safety" features recommended by the docs: this should never be
188188 // called while already fetching a page, and parameters (like 'event') should not be passed into fetchNextPage().
189189 // See https://tanstack.com/query/v4/docs/framework/react/guides/infinite-queries
190+ /* istanbul ignore next */
190191 fetchNextPage : ( ) => {
191192 if ( ! query . isFetching && ! query . isFetchingNextPage ) {
192193 // eslint-disable-next-line @typescript-eslint/no-floating-promises
You can’t perform that action at this time.
0 commit comments