Skip to content

Commit

Permalink
chore: remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xExp-po committed Sep 12, 2024
1 parent 651d7c3 commit d2b46fd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions dapp/src/components/CommitHistory.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const CommitHistory = () => {

const fetchCommitHistory = async () => {
const projectRepoInfo = loadProjectRepoInfo();
console.log("projectInfo:", projectRepoInfo);
if (projectRepoInfo?.author && projectRepoInfo?.repository) {
const history = await getCommitHistory(projectRepoInfo.author, projectRepoInfo.repository);
setCommitHistory(history);
Expand All @@ -23,7 +22,6 @@ const CommitHistory = () => {

const addMaintainerBadge = () => {
const configData = loadConfigData();
console.log("configData:", configData);
if (configData) {
const authors = configData.authorGithubNames.map(name => name.toLowerCase());
setAuthors(authors);
Expand Down
2 changes: 1 addition & 1 deletion dapp/src/service/WriteContractService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async function registerProject(
hash: config_hash,
domain_contract_id: domain_contract_id,
});
console.log("tx:", tx);

try {
await tx.signAndSend({
signTransaction: async (xdr) => {
Expand Down

0 comments on commit d2b46fd

Please sign in to comment.