Skip to content

Commit 7062692

Browse files
committed
remove test button
1 parent e18177e commit 7062692

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

src/ui/pages/siglead/ManageSigLeads.page.tsx

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -206,24 +206,23 @@ export const ManageSigLeadsPage: React.FC = () => {
206206
}
207207
};
208208

209-
const TestButton: React.FC = () => {
210-
return (
211-
<Button
212-
fullWidth
213-
onClick={async () => {
214-
const response = await getGroupMembers(`${orgsGroupId}`);
215-
response.map(console.log);
216-
}}
217-
>
218-
Test
219-
</Button>
220-
);
221-
};
209+
// const TestButton: React.FC = () => {
210+
// return (
211+
// <Button
212+
// fullWidth
213+
// onClick={async () => {
214+
// const response = await getGroupMembers(`${orgsGroupId}`);
215+
// response.map(console.log);
216+
// }}
217+
// >
218+
// Test
219+
// </Button>
220+
// );
221+
// };
222222

223223
return (
224224
<AuthGuard resourceDef={{ service: 'core', validRoles: [AppRoles.IAM_ADMIN] }}>
225225
<Container>
226-
<TestButton />
227226
<Title order={2}>SigLead Management System</Title>
228227
<ScreenComponent SigMemberCounts={SigMemberCounts} />
229228
{/* <SigTable /> */}

0 commit comments

Comments
 (0)