diff --git a/packages/nicolium/src/actions/mrf.ts b/packages/nicolium/src/actions/mrf.ts index 4a20d32c7..fb317b858 100644 --- a/packages/nicolium/src/actions/mrf.ts +++ b/packages/nicolium/src/actions/mrf.ts @@ -27,9 +27,7 @@ const simplePolicyMerge = ( }); return Object.fromEntries([ - ...Object.keys( - (mrfSimpleSchema as any).wrapped.pipe[2].entries as typeof mrfSimpleSchema.entries, - ).map((key) => [key, []]), + ...Object.keys(mrfSimpleSchema.wrapped.pipe[2].entries).map((key) => [key, []]), ...entries, ]); };