diff --git a/src/routes/nook/success.tsx b/src/routes/nook/success.tsx
index aafe31a..42941ce 100644
--- a/src/routes/nook/success.tsx
+++ b/src/routes/nook/success.tsx
@@ -55,10 +55,7 @@ export default function NookSuccess() {
return (
<>
-
+
@@ -88,16 +85,24 @@ export default function NookSuccess() {
}
>
-
Thanks for buying The Nook
+
+ Thanks for buying The Nook
+
- Here is your license key. Open The Nook, go to Settings, and enter it to activate.
+ Here is your license key. Open The Nook, go to Settings, and enter
+ it to activate.
- {key()}
+ {key()}
-
+
{copied() ? "Copied" : "Copy key"}
diff --git a/src/server/nook.ts b/src/server/nook.ts
index 937da71..1043645 100644
--- a/src/server/nook.ts
+++ b/src/server/nook.ts
@@ -233,9 +233,9 @@ export async function emailLicenseKey(
body: JSON.stringify({
sender: { name: "The Nook", email: "support@freno.me" },
to: [{ email: to }],
- subject: "Your The Nook license key",
+ subject: "Your license key",
textContent:
- `Your The Nook license key is:\n\n${licenseKey}\n\n` +
+ `Your license key is:\n\n${licenseKey}\n\n` +
`Open The Nook, go to Settings, and enter this key to activate.\n` +
`You can activate up to 3 devices.`
})