Skip to content

Commit

Permalink
refactor: remove unnecessary console
Browse files Browse the repository at this point in the history
  • Loading branch information
aube-dev committed Sep 19, 2024
1 parent bedf770 commit e1f051e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/models/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export class AuthSessionService {
* - Set-Cookie를 할 필요가 없는 경우 `null` 반환
*/
async commitSession(): Promise<string | null> {
console.log('commitSession', this.nextAction);
if (this.nextAction === 'destroy') {
const cookieHeader = await this.authSessionStorage.destroySession(
this.authSession,
Expand Down

0 comments on commit e1f051e

Please sign in to comment.