fix linting and testing stages
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful

This commit is contained in:
Madison Grubb
2026-02-12 13:39:45 -05:00
parent fbb38c5dd7
commit 06f9a5b96e
6 changed files with 10 additions and 9 deletions

View File

@@ -20,7 +20,7 @@ export const createSession = (userId, label = '') => {
return session
}
export const getLiveSession = (id) => sessions.get(id)
export const getLiveSession = id => sessions.get(id)
export const getActiveSessionByUserId = (userId) => {
const now = Date.now()
@@ -41,7 +41,7 @@ export const updateLiveSession = (id, updates) => {
session.updatedAt = now
}
export const deleteLiveSession = (id) => sessions.delete(id)
export const deleteLiveSession = id => sessions.delete(id)
export const clearSessions = () => sessions.clear()