Skip to content

Commit 07265c9

Browse files
committed
main
2 parents 7857133 + 68ff0f1 commit 07265c9

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

apps/web/app/(org)/dashboard/_components/Navbar/Items.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ const AdminNavItems = ({ toggleMobileNav }: Props) => {
204204
className="duration-200 size-3 text-gray-10"
205205
/>
206206
<p className="w-full text-[11px] flex-1 duration-200 truncate leading-0 text-gray-11">
207-
{activeOrg?.organization.customDomain
207+
{activeOrg?.organization.customDomain &&
208+
activeOrg?.organization.domainVerified
208209
? activeOrg?.organization.customDomain
209210
: "No custom domain set"}
210211
</p>

apps/web/app/(org)/login/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ const NormalLogin = ({
439439
</motion.div>
440440
<motion.p
441441
layout="position"
442-
className="mt-3 text-xs text-center text-gray-9"
442+
className="mt-3 mb-2 text-xs text-center text-gray-9"
443443
>
444444
Don't have an account?{" "}
445445
<Link

apps/web/app/s/[videoId]/_components/AuthOverlay.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Button, Dialog, DialogContent, Input, LogoBadge } from "@cap/ui";
33
import { faArrowLeft, faEnvelope } from "@fortawesome/free-solid-svg-icons";
44
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
55
import { AnimatePresence } from "framer-motion";
6+
import Image from "next/image";
67
import Link from "next/link";
78
import { useParams } from "next/navigation";
89
import { signIn } from "next-auth/react";

0 commit comments

Comments
 (0)