From 1d4b92171f40fce67dae423099f1a060bfc86bf2 Mon Sep 17 00:00:00 2001 From: "Lukas Fruntke (external expert on behalf of DB Netz)" Date: Tue, 4 Apr 2023 10:46:19 +0200 Subject: [PATCH] Remove erroneous renaming Signed-off-by: Lukas Fruntke (external expert on behalf of DB Netz) --- plugins/git-release-manager/src/features/Patch/PatchBody.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git-release-manager/src/features/Patch/PatchBody.tsx b/plugins/git-release-manager/src/features/Patch/PatchBody.tsx index 790b704487..c5429e389a 100644 --- a/plugins/git-release-manager/src/features/Patch/PatchBody.tsx +++ b/plugins/git-release-manager/src/features/Patch/PatchBody.tsx @@ -182,7 +182,7 @@ export const PatchBody = ({ // The selected patch commit's sha is included in the commit message, // which means it's part of a previous patch releaseBranchCommit.commit.message.includes( - getPatchCommitSuffix({ commitHash: commit.sha }), + getPatchCommitSuffix({ commitSha: commit.sha }), ), ); const hasNoParent = !commit.firstParentSha;