Closed theAnuragMishra closed 4 weeks ago
the session validation result is begin returned as null when the session id is expired but the type for the result doesn't have null. fixed this.
The example code was broken. This
return null;
should've been this.
return { session: null, user: null };
Just fixed it!
the session validation result is begin returned as null when the session id is expired but the type for the result doesn't have null. fixed this.