From 7757bf7a844526d9daba56e570c43fb9a46b280d Mon Sep 17 00:00:00 2001 From: Ali <83188384+testA113@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:01:31 +1200 Subject: [PATCH] fix(r2a): remove withUserProvider [EE-5355] (#10048) Co-authored-by: testa113 --- app/kubernetes/react/components/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/kubernetes/react/components/index.ts b/app/kubernetes/react/components/index.ts index 242e9fe36..21201c221 100644 --- a/app/kubernetes/react/components/index.ts +++ b/app/kubernetes/react/components/index.ts @@ -112,9 +112,7 @@ export const ngModule = angular .component( 'applicationEventsDatatable', r2a( - withUIRouter( - withReactQuery(withUserProvider(ApplicationEventsDatatable)) - ), + withUIRouter(withReactQuery(withCurrentUser(ApplicationEventsDatatable))), [] ) )