import ExternalLink from '../../../../common/components/link/external-link/ExternalLink'; import useAppVersion from '../../../../common/hooks-query/useAppVersion'; import { appVersion, isOntimeCloud, websiteUrl } from '../../../../externals'; import * as Panel from '../../panel-utils/PanelUtils'; import style from './AppVersion.module.scss'; export default function AppVersion() { const { data, isError } = useAppVersion(); if (isError) { return ( ); } if (data.hasUpdates) { return ( ); } return ( ); }