Skip to content

Commit

Permalink
fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Dec 26, 2024
1 parent e670f7e commit 48fd749
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions server/user/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ const invalidCredentialsError = {
],
}

type SessionStorage = {
items: {
[key: string]: ServerSessionData
}
interface SessionStorage {
items: Record<string, ServerSessionData>
}

@injectable()
Expand Down

0 comments on commit 48fd749

Please sign in to comment.