Skip to content

Commit

Permalink
Merge pull request #87 from ATIX-AG/fix_typo
Browse files Browse the repository at this point in the history
Fix typo in success toast
  • Loading branch information
bastian-src authored Dec 3, 2024
2 parents d49f713 + 37c8d6f commit b19ded9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const TextInputField = ({
dispatchAPICallbackToast(
success,
response,
`Sucessfully applied ${label}.`,
`Successfully applied ${label}.`,
`An error occurred appyling ${label}.`
)
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const Properties = ({
dispatchAPICallbackToast(
success,
response,
`Sucessfully fetched latest data.`,
`Successfully fetched latest data.`,
`An error occurred fetching quota information.`
)
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const Resource = ({
dispatchAPICallbackToast(
success,
response,
`Sucessfully applied ${resourceTitle}.`,
`Successfully applied ${resourceTitle}.`,
`An error occurred appyling ${resourceTitle}.`
)
);
Expand Down
2 changes: 1 addition & 1 deletion webpack/components/ResourceQuotaForm/components/Submit.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Submit = ({ isValid, onCreate, onSubmit }) => {
dispatchAPICallbackToast(
success,
response,
`Sucessfully created new Resource Quota`,
`Successfully created new Resource Quota`,
`An error occurred while creating new Resource Quota.`
)
);
Expand Down

0 comments on commit b19ded9

Please sign in to comment.