diff --git a/src/lib/components/eventModal.svelte b/src/lib/components/eventModal.svelte index e89d4b74c..1b20dbb36 100644 --- a/src/lib/components/eventModal.svelte +++ b/src/lib/components/eventModal.svelte @@ -79,7 +79,7 @@ : selected.service?.actions; // We need to check if the selected action name is still - // on the available list, and if so, change tje action to the + // on the available list, and if so, change the action to the // appropriate one, as it may contain different attributes const availableAction = availableActions.find( (a) => a.name === selected.action?.name diff --git a/src/lib/helpers/date.ts b/src/lib/helpers/date.ts index 49b5ff7ee..f8275753b 100644 --- a/src/lib/helpers/date.ts +++ b/src/lib/helpers/date.ts @@ -51,7 +51,7 @@ export const toLocaleDateTime = (datetime: string | number) => { }; /** - * Returns a date string usig the local timezone in ISO format (yyyy-mm-dd) + * Returns a date string using the local timezone in ISO format (yyyy-mm-dd) * * @param datetime date string or milliseconds since the epoch */ @@ -67,7 +67,7 @@ export const toLocaleDateISO = (datetime: string | number) => { }; /** - * Returns a time string usig the local timezone in ISO format (hh:mm:ss) + * Returns a time string using the local timezone in ISO format (hh:mm:ss) * * @param datetime date string or milliseconds since the epoch */ diff --git a/src/lib/sdk/billing.ts b/src/lib/sdk/billing.ts index a665d2e72..c9e8a6c4d 100644 --- a/src/lib/sdk/billing.ts +++ b/src/lib/sdk/billing.ts @@ -146,7 +146,7 @@ export type Aggregation = { */ amount: number; /** - * Price for addional members + * Price for additional members */ additionalMembers: number; /** diff --git a/src/lib/stores/headerAlert.ts b/src/lib/stores/headerAlert.ts index 2f5ed499f..ed8ecfeca 100644 --- a/src/lib/stores/headerAlert.ts +++ b/src/lib/stores/headerAlert.ts @@ -31,7 +31,7 @@ function createHeaderAlertStore() { }); }, get: (): HeaderAlert => { - //return higest importance component + //return highest importance component let component = { id: '', show: false, diff --git a/src/routes/(console)/(migration-wizard)/resource-form.svelte b/src/routes/(console)/(migration-wizard)/resource-form.svelte index 1da67926c..cc7e34ca8 100644 --- a/src/routes/(console)/(migration-wizard)/resource-form.svelte +++ b/src/routes/(console)/(migration-wizard)/resource-form.svelte @@ -36,7 +36,7 @@ /** * * @param field {string} The field to update. - * Representes the path to the field in the formData object e.g. 'users.root' + * Represents the path to the field in the formData object e.g. 'users.root' */ function handleInputChange(field: FormKeys) { return (event: Event) => {