when I add ajax.getJSON as one of my op parameters to my pipe, it seems to kill my observable ... am I doing it wrong or is it not supported ?
const [ clickCallback, [ a, b, c ] ] = useEventCallback((event$, inputs$, state$) =>
event$.pipe(
() => ajax.getJSON("/api/v1/"), <-- adding this line breaks everything
tap(x => console.log("tap2", x)),
map((x) => {
const { a, b } = x = {}
debugger
return [
a,
b,
false
]
}),
tap(x => console.log("tap3", x)),
),
)