Skip to content

Commit 87bcb9c

Browse files
committed
Fix types
1 parent f8c2930 commit 87bcb9c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

apps/web/components/devtools/DevTools.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ import {
1010
} from "@repo/ui/components/drawer";
1111
import {
1212
Tabs,
13+
TabsContent,
1314
TabsList,
1415
TabsTrigger,
15-
TabsContent,
1616
} from "@repo/ui/components/tabs";
1717
import { WrenchIcon } from "lucide-react";
18+
import { Session } from "next-auth";
1819

1920
function SessionStatus({ isActive }: { isActive: boolean }) {
2021
return (
@@ -29,7 +30,7 @@ function SessionStatus({ isActive }: { isActive: boolean }) {
2930
function UserInfoCard({
3031
user,
3132
}: {
32-
user: NonNullable<Awaited<ReturnType<typeof auth>>>["user"];
33+
user: Session["user"];
3334
}) {
3435
return (
3536
<div className="space-y-2">

0 commit comments

Comments
 (0)