Skip to content

Commit

Permalink
Merge pull request #11096 from bnussman-akamai/fix/image-uploader-max…
Browse files Browse the repository at this point in the history
…imum-spelling-mistake

fix: Image Uploader spelling mistake
  • Loading branch information
mjac0bs authored Oct 14, 2024
2 parents f6b3361 + 9816a6e commit e0084d9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Users unable to upgrade Kubernetes version from landing page ([#11056](https://github.com/linode/manager/pull/11056))
- Toasts not consistently dismissible with the 'X' button ([#11073](https://github.com/linode/manager/pull/11073))
- TypeScript performance of `DismissibleBanner.tsx` ([#11075](https://github.com/linode/manager/pull/11075))
- Spelling and grammar mistakes on image create pages ([#11096](https://github.com/linode/manager/pull/11096))

### Removed:

Expand All @@ -53,7 +54,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Add CodeBlock story ([#11019](https://github.com/linode/manager/pull/11019))
- Complete Linode Create refactor:
- Remove Linode Create v1 - Part 2 ([#11020](https://github.com/linode/manager/pull/11020))
- Rename `Linode Create v2` to `Linode Create` ([#11043](https://github.com/linode/manager/pull/11043))
- Rename `Linode Create v2` to `Linode Create` ([#11043](https://github.com/linode/manager/pull/11043))
- Validate redirect and login URLs via URL constructor ([#11031](https://github.com/linode/manager/pull/11031))
- Upgrade `upload-artifact` and `download-artifact` actions from v3 to v4 ([#11033](https://github.com/linode/manager/pull/11033))
- Update Sentry to the latest v7 version ([#11054](https://github.com/linode/manager/pull/11054))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('File Uploader', () => {
).toBeVisible();
expect(
screen.getByText(
'The maxiumum compressed file size is 5 GB and the file can’t exceed 6 GB when uncompressed.'
'The maximum compressed file size is 5 GB and the file can’t exceed 6 GB when uncompressed.'
)
).toBeVisible();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const ImageUploader = React.memo((props: Props) => {
compressed using gzip.
</Typography>
<Typography variant="subtitle2">
The maxiumum compressed file size is 5 GB and the file can&rsquo;t
The maximum compressed file size is 5 GB and the file can&rsquo;t
exceed 6 GB when uncompressed.
</Typography>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const CreateImageTab = () => {
<Stack spacing={2}>
<Typography variant="h2">Select Linode & Disk</Typography>
<Typography sx={{ maxWidth: { md: '80%', sm: '100%' } }}>
Custom images are billed monthly, at $0.10/GB. The disk you target
Custom images are billed monthly at $0.10/GB. The disk you target
for an image needs to meet specific{' '}
<Link to="https://techdocs.akamai.com/cloud-computing/docs/capture-an-image">
requirements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export const ImageUpload = () => {
Image Details
</Typography>
<Typography>
Custom images are billed monthly, at $0.10/GB. An uploaded image
Custom images are billed monthly at $0.10/GB. An uploaded image
file needs to meet specific{' '}
<Link to="https://techdocs.akamai.com/cloud-computing/docs/upload-an-image#requirements-and-considerations">
requirements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const ManageImageReplicasForm = (props: Props) => {
<Notice text={errors.root.message} variant="error" />
)}
<Typography>
Custom images are billed monthly, at $0.10/GB. Check out{' '}
Custom images are billed monthly at $0.10/GB. Check out{' '}
<Link to="https://www.linode.com/docs/guides/check-and-clean-linux-disk-space/">
this guide
</Link>{' '}
Expand Down

0 comments on commit e0084d9

Please sign in to comment.