Enhance guest management features in GuestListTable
Some checks failed
Build and Push Docker Images / build-frontend (push) Failing after 52s
Build and Push Docker Images / changes (push) Successful in 5s
Build and Push Docker Images / build-backend (push) Has been skipped

Added functionality for adding, editing, deleting, and copying guests' details, along with filtering, exporting, and sending invitations. Improved user interactions with dialog handling and introduced error handling for better usability. Integrated GuestsList into the event detail page.
This commit is contained in:
2025-03-16 10:13:41 +01:00
parent 4e66b22bae
commit c231f41e9c
3 changed files with 663 additions and 154 deletions

View File

@@ -6,6 +6,7 @@ import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
import { AuthProvider } from "@/context/auth-context";
import { ThemeProvider } from "next-themes";
import { DataProviders } from "@/providers/data";
import { Toaster } from "sonner";
// Create a client
const queryClient = new QueryClient({
@@ -29,6 +30,7 @@ export function Providers({ children }: { children: React.ReactNode }) {
>
<AuthProvider>
<DataProviders>{children}</DataProviders>
<Toaster />
</AuthProvider>
</ThemeProvider>
<ReactQueryDevtools initialIsOpen={false} />