Skip to content

Commit a0e04c3

Browse files
fix for remove SENTINEL#3
1 parent 01045b0 commit a0e04c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/helpers/api/api-database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ export class DatabaseAPIRequests {
314314
const databaseIds = await this.getDatabaseByConnectionType(
315315
connectionType
316316
);
317-
if(databaseIds.length > 0) {
317+
if(databaseIds?.length > 0) {
318318
const requestBody = { ids: [`${databaseIds}`] };
319319
const response = await sendDeleteRequest(
320320
ResourcePath.Databases,

0 commit comments

Comments
 (0)