Skip to content

Commit a39ce2e

Browse files
Cosmetics
1 parent ab674d7 commit a39ce2e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

frontend/src/pages/Fleets/Add/index.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useTranslation } from 'react-i18next';
44
import { useNavigate, useParams } from 'react-router-dom';
55
import { isNil } from 'lodash';
66
import * as yup from 'yup';
7-
import { WizardProps } from '@cloudscape-design/components';
7+
import { Box, WizardProps } from '@cloudscape-design/components';
88

99
import { Container, InfoLink, KeyValuePairs, SpaceBetween, Wizard } from 'components';
1010

@@ -217,7 +217,13 @@ export const FleetAdd: React.FC = () => {
217217
steps={[
218218
{
219219
title: 'Settings',
220-
info: <InfoLink onFollow={() => openHelpPanel(DEFAULT_FLEET_INFO)} />,
220+
description: (
221+
<Box>
222+
At least one fleet is required to run dev environments, tasks, or services. Create it here, or
223+
create it using the <code>dstack apply</code> command via the CLI.{' '}
224+
<InfoLink onFollow={() => openHelpPanel(DEFAULT_FLEET_INFO)} />
225+
</Box>
226+
),
221227
content: (
222228
<Container>
223229
<SpaceBetween direction="vertical" size="l">

0 commit comments

Comments
 (0)