feat(filters): replace existing filters with dynamic filters for improved user and device management

This commit is contained in:
2025-07-14 21:39:31 +05:00
parent 8bcf4812be
commit 9926de99d6
4 changed files with 74 additions and 46 deletions

View File

@ -1,10 +1,10 @@
import { redirect } from "next/navigation";
import { getServerSession } from "next-auth";
import { getProfileById } from "@/actions/user-actions";
import { authOptions } from "@/app/auth";
import ClientErrorMessage from "@/components/client-error-message";
import { Badge } from "@/components/ui/badge";
import { FloatingLabelInput } from "@/components/ui/floating-label";
import { getProfileById } from "@/queries/users";
import { tryCatch } from "@/utils/tryCatch";
export default async function Profile() {