🚨 fix: resolve all linting errors
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 37s

This commit is contained in:
2026-02-15 23:08:07 +07:00
parent c74597c57d
commit 63fcd8587b
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import { jwtDecode } from "../../../../helpers/http/jwt/decode";
import { redis } from "../../../../utils/databases/redis/connection";
import { deleteUserSessionRepository } from "../../../userSession/repositories/deleteUserSession.repository";
export const logoutService = async (jwtToken?: any) => {
export const logoutService = async (jwtToken?: string) => {
try {
if (!jwtToken) throw new AppError(403, "No auth token provided");