From fdcf55552a7f5a2b53a0e23f0474a4c48d2618e9 Mon Sep 17 00:00:00 2001 From: mirarifhasan Date: Tue, 13 Feb 2024 12:21:14 +0600 Subject: [PATCH] fix: add return statement --- packages/hoppscotch-backend/src/infra-config/helper.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/hoppscotch-backend/src/infra-config/helper.ts b/packages/hoppscotch-backend/src/infra-config/helper.ts index 3cc68006f..8f460efa8 100644 --- a/packages/hoppscotch-backend/src/infra-config/helper.ts +++ b/packages/hoppscotch-backend/src/infra-config/helper.ts @@ -174,6 +174,7 @@ export async function isInfraConfigTablePopulated(): Promise { console.log( 'Infra Config table is not populated with all entries. Populating now...', ); + return false; } return true;