import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig'; export const NetworkPrometheusAPIWarning = () => { const { uiConfig: { prometheusAPIAvailable }, } = useUiConfig(); if (prometheusAPIAvailable) return null; return (

This view requires the PROMETHEUS_API environment variable to be set. Refer to our{' '} documentation {' '} for more information.

); };