Skip to content

Commit

Permalink
fix(src/nit.ts): make addActionNameInCommit return string instead of obj
Browse files Browse the repository at this point in the history
Signed-off-by: Bofu Chen (bafu) <bofu@numbersprotocol.io>
  • Loading branch information
bafu committed Apr 23, 2023
1 parent 5c3987c commit 4d0442a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function addActionNameInCommit(commitData: string) {
commitJson["actionName"] = "action-commit";
}
}
return commitJson;
return JSON.stringify(commitJson);
}

export async function createAssetTreeInitialRegisterRemote(assetBytes,
Expand Down

0 comments on commit 4d0442a

Please sign in to comment.