diff --git a/packages/emails/templates/confirm-email.html b/packages/emails/templates/confirm-email.html
index 3b47e17e3b..06c4163fad 100644
--- a/packages/emails/templates/confirm-email.html
+++ b/packages/emails/templates/confirm-email.html
@@ -613,7 +613,7 @@
Confirming this request will securely log you in using {{email}}.
- Enjoy your new scheduling soultion by,
The Cal.com Team
+ Enjoy your new scheduling solution by,
The Cal.com Team
diff --git a/packages/platform/types/event-types/event-types_2024_06_14/inputs/booking-fields.input.ts b/packages/platform/types/event-types/event-types_2024_06_14/inputs/booking-fields.input.ts
index a16adef418..696198982c 100644
--- a/packages/platform/types/event-types/event-types_2024_06_14/inputs/booking-fields.input.ts
+++ b/packages/platform/types/event-types/event-types_2024_06_14/inputs/booking-fields.input.ts
@@ -799,7 +799,7 @@ export class RadioGroupFieldInput_2024_06_14 {
description:
"Disable this booking field if the URL contains query parameter with key equal to the slug and prefill it with the provided value.\
For example, if the slug is `language` and options of this select field are ['english', 'italian'] and the URL contains query parameter `&language=italian`,\
- the 'italian' radio buttom will be selected and the select field will be disabled.",
+ the 'italian' radio button will be selected and the select field will be disabled.",
})
disableOnPrefill?: boolean;
diff --git a/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts b/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts
index 058b0c96c3..b587605876 100644
--- a/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts
+++ b/packages/platform/types/event-types/event-types_2024_06_14/inputs/create-event-type.input.ts
@@ -187,7 +187,7 @@ class BaseCreateEventTypeInput {
@IsBoolean()
@IsOptional()
@DocsPropertyOptional({
- description: "If true, person booking this event't cant add guests via their emails.",
+ description: "If true, person booking this event can't add guests via their emails.",
})
disableGuests?: boolean;
@@ -211,7 +211,7 @@ class BaseCreateEventTypeInput {
@IsInt()
@IsOptional()
@DocsPropertyOptional({
- description: "Time spaces that can be pre-pended before an event to give more time before it.",
+ description: "Time spaces that can be prepended before an event to give more time before it.",
})
beforeEventBuffer?: number;
diff --git a/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts b/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts
index 4a066d9a6e..e883b9d333 100644
--- a/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts
+++ b/packages/platform/types/event-types/event-types_2024_06_14/inputs/update-event-type.input.ts
@@ -184,7 +184,7 @@ class BaseUpdateEventTypeInput {
@IsBoolean()
@IsOptional()
@DocsPropertyOptional({
- description: "If true, person booking this event't cant add guests via their emails.",
+ description: "If true, person booking this event can't add guests via their emails.",
})
disableGuests?: boolean;
@@ -208,7 +208,7 @@ class BaseUpdateEventTypeInput {
@IsInt()
@IsOptional()
@DocsPropertyOptional({
- description: "Time spaces that can be pre-pended before an event to give more time before it.",
+ description: "Time spaces that can be prepended before an event to give more time before it.",
})
beforeEventBuffer?: number;
diff --git a/packages/prisma/docker-compose.yml b/packages/prisma/docker-compose.yml
index b9e0d5061f..ffb00efd38 100644
--- a/packages/prisma/docker-compose.yml
+++ b/packages/prisma/docker-compose.yml
@@ -4,7 +4,7 @@ services:
postgres:
image: postgres:13
ports:
- - "5450:5432" # expose pg on port 5450 to not collide with pg from elswhere
+ - "5450:5432" # expose pg on port 5450 to not collide with pg from elsewhere
restart: always
volumes:
- db_data:/var/lib/postgresql/data
diff --git a/packages/prisma/sql/getSelectedCalendarsToWatch.sql b/packages/prisma/sql/getSelectedCalendarsToWatch.sql
index d44f31e50d..59074d9500 100644
--- a/packages/prisma/sql/getSelectedCalendarsToWatch.sql
+++ b/packages/prisma/sql/getSelectedCalendarsToWatch.sql
@@ -18,7 +18,7 @@ WHERE
OR (
-- Or is a calendar that is about to expire
sc."googleChannelExpiration" IS NOT NULL
- -- We substract one day in senconds to renew a day before expiration
+ -- We substract one day in seconds to renew a day before expiration
AND TO_TIMESTAMP(sc."googleChannelExpiration"::bigint / 1000 - 86400)::date < CURRENT_TIMESTAMP
)
);
diff --git a/packages/types/App.d.ts b/packages/types/App.d.ts
index 5f6fc14f93..0c3d45d6b4 100644
--- a/packages/types/App.d.ts
+++ b/packages/types/App.d.ts
@@ -116,13 +116,13 @@ export interface App {
url: string;
/** Optional documentation website URL */
docsUrl?: string;
- /** Wether if the app is verified by Cal.com or not */
+ /** Whether the app is verified by Cal.com or not */
verified?: boolean;
- /** Wether the app should appear in the trending section of the app store */
+ /** Whether the app should appear in the trending section of the app store */
trending?: boolean;
- /** Rating from 0 to 5, harcoded for now. Should be fetched later on. */
+ /** Rating from 0 to 5, hardcoded for now. Should be fetched later on. */
rating?: number;
- /** Number of reviews, harcoded for now. Should be fetched later on. */
+ /** Number of reviews, hardcoded for now. Should be fetched later on. */
reviews?: number;
/**
* Whether if the app is installed globally or needs user intervention.
diff --git a/packages/types/next.d.ts b/packages/types/next.d.ts
index b3bf15c9bf..538b95788f 100644
--- a/packages/types/next.d.ts
+++ b/packages/types/next.d.ts
@@ -9,7 +9,7 @@ export declare module "next" {
query: Partial<{ [key: string]: string | string[] }> & { args: string[] };
session?: Session | null;
// ⬇ These are needed by @calcom/api
- body: unkown;
+ body: unknown;
userId: number;
method: string;
// session: { user: { id: number } };