try to make the build go through
Some checks failed
checks-impure / test (pull_request) Successful in 25s
checks / test (pull_request) Failing after 2m15s

This commit is contained in:
sara-pervana
2023-11-19 16:18:51 +01:00
parent 5edf956d2b
commit a755c592dc
3 changed files with 2 additions and 43 deletions

View File

@@ -1,7 +1,5 @@
import { DashboardCard } from "@/components/card";
import { NoDataOverlay } from "@/components/noDataOverlay";
import CustomTable from "@/components/table";
import { DLGTableConfig, DLGdummyData } from "@/mock/DLG";
export const RecentActivity = () => {
return (
@@ -9,10 +7,6 @@ export const RecentActivity = () => {
<div className="flex w-full justify-center align-middle">
<NoDataOverlay label="No Activity yet" />
</div>
<div>
<CustomTable data={DLGdummyData} configuration={DLGTableConfig} />
</div>
</DashboardCard>
);
};

View File

@@ -1,35 +0,0 @@
import { Checkbox } from "@mui/material"
export const DLGdummyData = [
{
requester_name: "C1",
"requester_did": "did:sov:test:1234",
"did_resolved": "did:sov:test:123",
"timestamp": "2023.11.01.17:05:48",
}
]
export const DLGTableConfig = [
{
key: "requester_name",
label: "Requester Name"
},
{
key: "requester_did",
label: "Requester DID"
},
{
key: "did_resolved",
label: "DID Resolved"
},
{
key: "timestamp",
label: "Timestamp"
},
{
key: "visible",
label: "Visible",
render: (value: any) => <Checkbox />
}
]