import { Text } from '/@/renderer/components'; import { useCurrentServer } from '/@/renderer/store'; export const ServerCredentialRequired = () => { const currentServer = useCurrentServer(); return ( <> The selected server '{currentServer?.name}' requires an additional login to access. Add your credentials in the 'manage servers' menu or switch to a different server. ); };