diff --git a/src/containers/internal/views/alerts/index.tsx b/src/containers/internal/views/alerts/index.tsx index 248d997..ba45a67 100644 --- a/src/containers/internal/views/alerts/index.tsx +++ b/src/containers/internal/views/alerts/index.tsx @@ -16,7 +16,6 @@ import { Section, SelectFilter, Spinner, - Icons, } from "src/components"; import type { Account, Alert, PageQuery } from "src/api/types"; @@ -27,6 +26,7 @@ import { getQueryFilter, setLocation, } from "src/store/localStore"; +import AlertDetailItem from "./alert-detail-item"; export const Alerts = () => { const user = useSelectState("user"); @@ -112,21 +112,7 @@ export const Alerts = () => { ) : hasLength(alerts) ? ( alerts.map((alert) => ( -
-
-
- - {dayjs(alert.time).format("YYYY MM.DD hh:mm a")} - -
-
-
- - {alert.message} -
-
-
-
+ )) ) : ( No data.