diff --git a/www/src/components/Table/editors/CodeEditor.tsx b/www/src/components/Table/editors/CodeEditor.tsx index 0a38b664..18142bea 100644 --- a/www/src/components/Table/editors/CodeEditor.tsx +++ b/www/src/components/Table/editors/CodeEditor.tsx @@ -282,9 +282,9 @@ export default function CodeEditor(props: any) { }> type TwilioMessageBody = (SparkContext) => Promise<{ - body: any; - from: any; - to: any; + body: string; + from: string; + to: string; }> type TaskBody = (SparkContext) => Promise