|
1 | 1 | import React, { useState, useEffect } from 'react'; |
2 | 2 | import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; |
3 | | -import { Button } from 'modl-shared-web/components/ui/button'; |
4 | | -import { Input } from 'modl-shared-web/components/ui/input'; |
5 | | -import { Badge } from 'modl-shared-web/components/ui/badge'; |
6 | | -import { Card, CardContent } from 'modl-shared-web/components/ui/card'; |
7 | | -import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from 'modl-shared-web/components/ui/select'; |
8 | | -import { Checkbox } from 'modl-shared-web/components/ui/checkbox'; |
9 | | -import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from 'modl-shared-web/components/ui/alert-dialog'; |
| 3 | +import { Button } from '@modl-gg/shared-web/components/ui/button'; |
| 4 | +import { Input } from '@modl-gg/shared-web/components/ui/input'; |
| 5 | +import { Badge } from '@modl-gg/shared-web/components/ui/badge'; |
| 6 | +import { Card, CardContent } from '@modl-gg/shared-web/components/ui/card'; |
| 7 | +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@modl-gg/shared-web/components/ui/select'; |
| 8 | +import { Checkbox } from '@modl-gg/shared-web/components/ui/checkbox'; |
| 9 | +import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from '@modl-gg/shared-web/components/ui/alert-dialog'; |
10 | 10 | import { apiClient } from '@/lib/api'; |
11 | 11 | import { formatDate, formatDateRelative } from '@/lib/utils'; |
12 | 12 | import { useSocket } from '@/hooks/use-socket'; |
|
0 commit comments