* Add letter spacing to cell text * Set window control height in px * Add temp unused routes * Migrate text title font weights * Bump mantine to v6 alpha * Migrate modals / notifications * Increase header bar to 65px * Adjust play button props * Migrate various components * Migrate various pages and root styles * Adjust default badge padding * Fix sidebar spacing * Fix list header badges * Adjust default theme
18 lines
494 B
TypeScript
18 lines
494 B
TypeScript
import { Text } from '/@/renderer/components';
|
|
import { useCurrentServer } from '/@/renderer/store';
|
|
|
|
export const ServerCredentialRequired = () => {
|
|
const currentServer = useCurrentServer();
|
|
|
|
return (
|
|
<>
|
|
<Text>
|
|
The selected server '{currentServer?.name}' requires an additional login to
|
|
access.
|
|
</Text>
|
|
<Text>
|
|
Add your credentials in the 'manage servers' menu or switch to a different server.
|
|
</Text>
|
|
</>
|
|
);
|
|
};
|