From 1a26a18f7fbd5161c76c9254c9adf582ca022146 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Thu, 7 Oct 2021 09:08:00 +0200 Subject: [PATCH] integration: Add missing lodash import Signed-off-by: Johan Haals --- packages/integration/src/bitbucket/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/integration/src/bitbucket/config.ts b/packages/integration/src/bitbucket/config.ts index 3b4a9df162..e2758952e9 100644 --- a/packages/integration/src/bitbucket/config.ts +++ b/packages/integration/src/bitbucket/config.ts @@ -15,6 +15,7 @@ */ import { Config } from '@backstage/config'; +import { trimEnd } from 'lodash'; import { isValidHost } from '../helpers'; const BITBUCKET_HOST = 'bitbucket.org';