Skip to content

Commit

Permalink
fix test:unit
Browse files Browse the repository at this point in the history
  • Loading branch information
ogerly committed Jun 29, 2024
1 parent 44b7770 commit ec23d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/stores/roomsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const useRoomsStore = defineStore('rooms', () => {
// console.log('refetchRooms', openRoomsQueryResult.value)
if (openRoomsQueryResult.value) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
setRooms(openRoomsQueryResult.value.openRooms as Room)
setRooms(openRoomsQueryResult.value.openRooms)
}
} catch (error) {
GlobalErrorHandler.error('Error refetching open rooms!', error)
Expand Down

0 comments on commit ec23d05

Please sign in to comment.