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 8649a46 commit 406114eCopy full SHA for 406114e
src/components/common/navigation/NavigationRoutes.tsx
@@ -389,7 +389,14 @@ const NavigationRoutes = ({ reloadVersionConfig }: Readonly<NavigationRoutesType
389
}
390
391
392
- const getGrafanaModuleStatus = () => getModuleInfo(ModuleNameMap.GRAFANA)
+ const getGrafanaModuleStatus = async () => {
393
+ try {
394
+ const response = await getModuleInfo(ModuleNameMap.GRAFANA)
395
+ return response
396
+ } catch {
397
+ return null
398
+ }
399
400
401
const handleFetchInitialData = async () => {
402
try {
0 commit comments