We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a3c8aa commit ac18c35Copy full SHA for ac18c35
apps/sim/blocks/blocks/slack.ts
@@ -615,6 +615,12 @@ export const SlackBlock: BlockConfig<SlackResponse> = {
615
}
616
617
case 'update':
618
+ console.log('[Slack Block Debug] update params:', {
619
+ updateTimestamp,
620
+ updateText,
621
+ hasUpdateTimestamp: 'updateTimestamp' in params,
622
+ allParamKeys: Object.keys(params),
623
+ })
624
if (!updateTimestamp || !updateText) {
625
throw new Error('Timestamp and text are required for update operation')
626
0 commit comments