diff --git a/scripts/hydrate.ts b/scripts/hydrate.ts
index 9c278539..bf3f7111 100644
--- a/scripts/hydrate.ts
+++ b/scripts/hydrate.ts
@@ -1,6 +1,6 @@
// import { orgs, sites, resources, exitNodes, targets } from "@server/db/schema";
// import db from "@server/db";
-// import { crateAdminRole } from "@server/db/ensureActions";
+// import { createAdminRole } from "@server/db/ensureActions";
// async function insertDummyData() {
// const org1 = db
@@ -13,7 +13,7 @@
// .returning()
// .get();
-// await crateAdminRole(org1.orgId!);
+// await createAdminRole(org1.orgId!);
// // Insert dummy exit nodes
// const exitNode1 = db
diff --git a/server/emails/templates/SendInviteLink.tsx b/server/emails/templates/SendInviteLink.tsx
index 64f19bba..cc05881d 100644
--- a/server/emails/templates/SendInviteLink.tsx
+++ b/server/emails/templates/SendInviteLink.tsx
@@ -37,7 +37,7 @@ export const SendInviteLink = ({
- You're invite to join a Fossorial organization
+ You're invited to join a Fossorial organization
Hi {email || "there"},
@@ -45,12 +45,15 @@ export const SendInviteLink = ({
You’ve been invited to join the organization{" "}
{orgName}
- {inviterName ? ` by ${inviterName}.` : ""}. Please
+ {inviterName ? ` by ${inviterName}.` : "."} Please
access the link below to accept the invite.
This invite will expire in{" "}
- {expiresInDays} days.
+
+ {expiresInDays}{" "}
+ {expiresInDays === "1" ? "day" : "days"}.
+