I am developing an app in Qwik with firebase auth and I am getting the following error:
Internal server error: Optimizer should replace all usages of $() with some special syntax. If you need to create a QRL manually, use inlinedQrl() instead.
<button onClick$={() =>
*signInWithEmailAndPassword*(auth, state.email, state.password)}
>Login</button>
<button
onClick$={*signInWithGoogle*}
>Login with Google</button>
signInWithGoogle is a function I have implemented and signInWithEmailAndPassword is imported from firebase/auth.
Expecting to be compiled