File tree Expand file tree Collapse file tree
src/components/Tabs/Alerts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ import { toast } from "sonner";
66import AlertItem from "./AlertItem" ;
77import AlertFilter from "./AlertFilter" ;
88import SubscriptionManager from "./SubscriptionManager" ;
9- import { Button } from "@/components/ui/button" ;
109import { Badge } from "@/components/ui/badge" ;
11- import { Settings } from "lucide-react" ;
1210
1311type AlertViewMode = "all" | "my" ;
1412
@@ -30,7 +28,7 @@ const Alerts = () => {
3028 const [ alerts , setAlerts ] = useState < Alert [ ] > ( [ ] ) ;
3129 const [ viewMode , setViewMode ] = useState < AlertViewMode > ( "all" ) ;
3230 const [ selectedCategory , setSelectedCategory ] = useState < AlertCategory | undefined > ( undefined ) ;
33- const [ showSubscriptionManager , setShowSubscriptionManager ] = useState ( false ) ;
31+ const showSubscriptionManager = false ;
3432
3533 // 공지사항 목록 가져오기
3634 const fetchAlerts = useCallback ( async ( ) => {
You can’t perform that action at this time.
0 commit comments