diff --git a/app/routes/_auth+/accept-invite.$inviteId.tsx b/app/routes/_auth+/accept-invite.$inviteId.tsx index b4c9d53c5..70f6c31ba 100644 --- a/app/routes/_auth+/accept-invite.$inviteId.tsx +++ b/app/routes/_auth+/accept-invite.$inviteId.tsx @@ -185,7 +185,7 @@ export default function AcceptInvite() { const error = actionData?.error; return ( <> -
{inviter} invites you to join Shelf as a member of{" "} @@ -198,7 +198,7 @@ export default function AcceptInvite() { value={searchParams.get("token") || ""} /> {error && ( -
+
{error.message}
)} @@ -207,7 +207,7 @@ export default function AcceptInvite() {If you have any questions or need assistance, please don't hesitate to contact our support team at {SUPPORT_EMAIL}. diff --git a/vite.config.ts b/vite.config.ts index 2edd5c12b..a706d1c64 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -17,10 +17,10 @@ const buildHash = process.env.BUILD_HASH || createHash(); export default defineConfig({ server: { port: 3000, - https: { - key: "./.cert/key.pem", - cert: "./.cert/cert.pem", - }, + // https: { + // key: "./.cert/key.pem", + // cert: "./.cert/cert.pem", + // }, warmup: { clientFiles: [ "./app/entry.client.tsx",