We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d01eb0c commit 39a78dbCopy full SHA for 39a78db
packages/examples/src/crm-example.ts
@@ -51,7 +51,7 @@ console.log('🔄 Sales Pipeline Stages:');
51
const stageField = opportunityObject.fields.stage;
52
if (stageField.type === 'select' && stageField.options) {
53
stageField.options.forEach((option, index) => {
54
- const arrow = index < stageField.options!.length - 2 ? '➡️' : '';
+ const arrow = index < stageField.options!.length - 1 ? '➡️' : '';
55
console.log(` ${option.label} ${arrow}`);
56
});
57
}
0 commit comments