Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e2dbc0 commit c6b6747Copy full SHA for c6b6747
libs/state/actions/src/lib/proxy.ts
@@ -71,7 +71,7 @@ export function actionProxyHandler<T extends object, U extends object>({
71
72
// the user wants to get a single EventEmitter and trigger a side effect on event emission
73
if (prop.toString().startsWith('on')) {
74
- const propName = prop.toString().slice(2).toLowerCase() as KeysOfT;
+ const propName = prop.toString().slice(2) as KeysOfT;
75
return (
76
behaviour: OperatorFunction<T[KeysOfT], T[KeysOfT]>,
77
sf: (v: T[KeysOfT]) => void
0 commit comments