The function getPreparedCommit should return the suggested message without the type prefixes (fix:, feat:,...).
// questions.js
default: getPreparedCommit('subject'),
Current behavior:
- Previous commit subject: "fix: my message"
- Current commit type: "fix"
- Current commit subject (suggestion): "fix: my message"
- Current commit subject after accept the suggestion: "fix: my message"
- Final commit subject "fix: fix: my message"
The function getPreparedCommit should return the suggested message without the type prefixes (fix:, feat:,...).
Current behavior: