feat: migrate task jobs to workflow notifications + timeline

This commit is contained in:
2026-03-02 14:29:31 -05:00
parent 36c4ed2ee2
commit d81a681905
33 changed files with 2437 additions and 292 deletions

View File

@@ -2,6 +2,7 @@
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { useState } from 'react';
import { Toaster } from 'sonner';
type QueryProviderProps = {
children: React.ReactNode;
@@ -20,6 +21,15 @@ export function QueryProvider({ children }: QueryProviderProps) {
return (
<QueryClientProvider client={queryClient}>
{children}
<Toaster
position="top-right"
closeButton
richColors
toastOptions={{
className: 'sonner-toast',
descriptionClassName: 'sonner-toast-description'
}}
/>
</QueryClientProvider>
);
}