generated from Luis/nextjs-python-web-template
fixed build error in ui
This commit is contained in:
@@ -25,8 +25,6 @@ import { Entity, Service } from "@/api/model";
|
||||
import useGetEntityByNameOrDid from "@/components/hooks/useGetEntityByNameOrDid";
|
||||
import { useGetAllServices } from "@/api/services/services";
|
||||
import axios from "axios";
|
||||
import { NoDataOverlay } from "@/components/noDataOverlay";
|
||||
import { DashboardCard } from "@/components/card";
|
||||
import CloseIcon from "@mui/icons-material/Close";
|
||||
|
||||
interface SnackMessage {
|
||||
@@ -34,16 +32,6 @@ interface SnackMessage {
|
||||
severity: "success" | "error";
|
||||
}
|
||||
|
||||
export const RecentActivity = (entity: Entity) => {
|
||||
return (
|
||||
<DashboardCard title="Recent Activity">
|
||||
<div className="flex w-full justify-center align-middle">
|
||||
<NoDataOverlay label="No Activity yet" />
|
||||
</div>
|
||||
</DashboardCard>
|
||||
);
|
||||
};
|
||||
|
||||
type AttachButtonProps = {
|
||||
entity?: Entity;
|
||||
setSnackbarMessage: (message: SnackMessage) => void;
|
||||
|
||||
Reference in New Issue
Block a user