import { usePublicSettings } from '@/portainer/settings/queries'; interface Props { passwordValid: boolean; forceChangePassword?: boolean; } export function PasswordCheckHint({ passwordValid, forceChangePassword, }: Props) { const settingsQuery = usePublicSettings(); const minPasswordLength = settingsQuery.data?.RequiredPasswordLength; return (