Added lookup for cloud account. Added SessionModal component.

This commit is contained in:
Mike Cao
2025-10-05 23:15:36 -07:00
parent caf04015bb
commit f733690d38
7 changed files with 79 additions and 48 deletions

View File

@@ -208,6 +208,7 @@ export async function getWebsiteCount(userId: string) {
return prisma.client.website.count({
where: {
userId,
deletedAt: null,
},
});
}