Skip to content

Commit 279a26b

Browse files
committed
fix: typecheck
1 parent 9e127f7 commit 279a26b

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

src/containers/Tenant/TenantDrawerHealthcheck.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function TenantDrawerHealthcheck({children}: TenantDrawerWrapperProps) {
4646

4747
const renderDrawerContent = React.useCallback(() => {
4848
return <Healthcheck tenantName={database} />;
49-
}, []);
49+
}, [database]);
5050

5151
return (
5252
<DrawerWrapper

tests/suites/tenant/summary/ObjectSummary.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ export class ObjectSummary {
2020
private treeLoaders: Locator;
2121
private primaryKeys: Locator;
2222
private actionsMenu: ActionsMenu;
23-
private aclWrapper: Locator;
24-
private aclListWrapper: Locator;
25-
private effectiveAclListWrapper: Locator;
26-
private aclList: Locator;
27-
private effectiveAclList: Locator;
2823
private createDirectoryModal: Locator;
2924
private createDirectoryInput: Locator;
3025
private createDirectoryButton: Locator;
@@ -44,13 +39,6 @@ export class ObjectSummary {
4439
this.schemaViewer = page.locator('.schema-viewer');
4540
this.primaryKeys = page.locator('.schema-viewer__keys_type_primary');
4641
this.actionsMenu = new ActionsMenu(page.locator('.g-popup.g-popup_open'));
47-
this.aclWrapper = page.locator('.ydb-acl');
48-
this.aclListWrapper = this.aclWrapper.locator('.gc-definition-list').first();
49-
this.aclList = this.aclListWrapper.locator('dl.gc-definition-list__list').first();
50-
this.effectiveAclListWrapper = this.aclWrapper.locator('.gc-definition-list').last();
51-
this.effectiveAclList = this.effectiveAclListWrapper
52-
.locator('dl.gc-definition-list__list')
53-
.first();
5442
this.createDirectoryModal = page.locator('.g-modal.g-modal_open');
5543
this.createDirectoryInput = page.locator(
5644
'.g-text-input__control[placeholder="Relative path"]',

0 commit comments

Comments
 (0)