'use client' import cn from 'classnames' import { useSystemFeaturesStore } from '../store' import s from './styles.module.css' const LicenseInfo = () => { const { systemFeatures } = useSystemFeaturesStore() if (!systemFeatures.expired_at) { return (
Your organization's Dify Enterprise license has expired.
Please contact your administrator to continue using Dify.
) } return null } export default LicenseInfo