Skip to content

Commit

Permalink
build: fix typescript non-sense after vue update
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashornych committed Oct 30, 2024
1 parent 1dbd35a commit b762926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/connection/service/ConnectionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class ConnectionService {
return await this.fetchAndCacheServerStatus(connection)
}

let serverStatus: ServerStatus | undefined = this.store.cachedServerStatuses.get(connection.id)
let serverStatus: ServerStatus | undefined = this.store.cachedServerStatuses.get(connection.id) as ServerStatus | undefined
if (serverStatus == undefined) {
serverStatus = await this.fetchAndCacheServerStatus(connection)
this.store.cachedServerStatuses.set(connection.id, serverStatus)
Expand Down

0 comments on commit b762926

Please sign in to comment.