The signIn() function in src/server-actions.js (line 43) accepts an optional string argument used as the redirect URL. However, the current type definition in types/server-actions.d.ts (line 5) does not reflect this behavior.
To align the type definition with the implementation, I suggest updating the signature to:
signIn(redirectUrl?: string | null)
The signIn() function in src/server-actions.js (line 43) accepts an optional string argument used as the redirect URL. However, the current type definition in types/server-actions.d.ts (line 5) does not reflect this behavior.
To align the type definition with the implementation, I suggest updating the signature to: