Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/routes/_auth+/accept-invite.$inviteId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export default function AcceptInvite() {
const error = actionData?.error;
return (
<>
<div className=" flex flex-col items-center text-center">
<div className=" flex flex-col items-center text-center">
<h2>Accept invite</h2>
<p>
<strong>{inviter}</strong> invites you to join Shelf as a member of{" "}
Expand All @@ -198,7 +198,7 @@ export default function AcceptInvite() {
value={searchParams.get("token") || ""}
/>
{error && (
<p className="mx-[-200px] mb-3 text-sm text-error-500">
<p className="mx-4 mb-3 text-sm text-error-500 md:mx-[-200px]">
{error.message}
</p>
)}
Expand All @@ -207,7 +207,7 @@ export default function AcceptInvite() {
</Button>
</Form>
</div>
<div className=" mx-[-200px] mt-20 flex flex-col items-center text-center text-gray-600">
<div className=" mx-4 mt-20 flex flex-col items-center text-center text-gray-600 md:mx-[-200px]">
<p>
If you have any questions or need assistance, please don't hesitate to
contact our support team at {SUPPORT_EMAIL}.
Expand Down
8 changes: 4 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading