Skip to content

Commit

Permalink
remove stray console.log
Browse files Browse the repository at this point in the history
Signed-off-by: Scott J Dickerson <[email protected]>
  • Loading branch information
sjd78 committed Nov 15, 2023
1 parent 81037af commit 8d15889
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion client/src/app/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,5 @@ const SHA_REGEX =
*/
export const extractFirstSha = (str: string): string | undefined => {
const match = str.match(SHA_REGEX);
console.log("match:", match);
return match && match[0] ? match[0] : undefined;
};

0 comments on commit 8d15889

Please sign in to comment.