Skip to content

Commit 91169b1

Browse files
feat: [PR-1483] show expanded zone availability (#242)
1 parent e4c9799 commit 91169b1

File tree

4 files changed

+515
-93
lines changed

4 files changed

+515
-93
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Releases are managed through GitHub Actions. To create a new release:
4545
3. Click on the "Release" workflow
4646
4. Click "Run workflow"
4747
5. Select the version bump type:
48-
- `patch`: for backwards-compatible bug fixes (0.0.x)
49-
- `minor`: for backwards-compatible new features (0.x.0)
50-
- `major`: for breaking changes (x.0.0)
48+
- `patch`: for backwards-compatible changes (0.0.x)
49+
- `minor`: for breaking changes (0.x.0)
50+
- `major`: for major breaking changes (x.0.0)
5151
- `prerelease`: for pre-release versions (0.0.0-pre.timestamp)
5252
6. Click "Run workflow" to start the release process
5353

src/lib/contracts/ContractDisplay.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ export function ContractList(props: { contracts: Contract[] }) {
170170
</Box>
171171

172172
<Box paddingLeft={4} flexDirection="column">
173-
<Text dimColor># Place a buy order to get started</Text>
174-
<Text color="yellow">sf buy</Text>
173+
<Text dimColor># Buy a node to get started</Text>
174+
<Text color="yellow">sf nodes create</Text>
175175
</Box>
176176
</Box>
177177
);

src/lib/orders/OrderDisplay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export function OrderDisplay(props: {
189189

190190
<Box paddingLeft={4} flexDirection="column">
191191
<Text dimColor># Place an order to buy compute</Text>
192-
<Text color="yellow">sf buy</Text>
192+
<Text color="yellow">sf nodes create</Text>
193193
</Box>
194194
</Box>
195195
);

0 commit comments

Comments
 (0)