We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd04167 commit f85c1d3Copy full SHA for f85c1d3
src/Shared/Helpers.tsx
@@ -1087,14 +1087,14 @@ export const getCentralAPIHealthObjectFromLocalStorage = (): CentralAPILocalConf
1087
return {
1088
lastUpdatedDate: lastUpdatedDate || '',
1089
updateCount: updateCount || 0,
1090
- isConnected: isConnected || null,
+ isConnected: isConnected || false,
1091
}
1092
} catch {
1093
localStorage.removeItem(CENTRAL_API_LOCAL_STORAGE_KEY)
1094
1095
lastUpdatedDate: '',
1096
updateCount: 0,
1097
- isConnected: null,
+ isConnected: false,
1098
1099
1100
0 commit comments