Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Image Uploader spelling mistake #11096

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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