From 51059b0f3963b164d390a698395d045c6dfb50fc Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Tue, 18 Oct 2022 20:55:34 +0200 Subject: [PATCH] refactor(github): export default in get-repo-owner-and-repo --- .../backend/src/apps/github/common/get-repo-owner-and-repo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/apps/github/common/get-repo-owner-and-repo.ts b/packages/backend/src/apps/github/common/get-repo-owner-and-repo.ts index ccd89667..fcaec1f1 100644 --- a/packages/backend/src/apps/github/common/get-repo-owner-and-repo.ts +++ b/packages/backend/src/apps/github/common/get-repo-owner-and-repo.ts @@ -3,7 +3,7 @@ type TRepoOwnerAndRepo = { repo: string; } -export function getRepoOwnerAndRepo(repoFullName: string): TRepoOwnerAndRepo { +export default function getRepoOwnerAndRepo(repoFullName: string): TRepoOwnerAndRepo { const [repoOwner, repo] = repoFullName.split('/'); return {