How to remove the promises in your json response?

Attached below is my code


export function get_categories(request){

    options = {
 "headers": {
 "Content-Type": "application/json"
        }
    };

 let catBASE_URL = <insert link here>;
    TableRowData = {"image_url": <image url>,"title": "Men's Watches","subtitle":"","action_url":"","buttons":[{"type": "dynamic_block_callback","caption": "View","url":catBASE_URL+"mens","method": "get","headers": {},"payload": {}}]};
    TableData.push(TableRowData);

    TableRowData = {"image_url": <image url>,"title": "Women's Watches","subtitle":"","action_url":"","buttons":[{"type": "dynamic_block_callback","caption": "View","url":catBASE_URL+"womens","method": "get","headers": {},"payload": {}}]};
    TableData.push(TableRowData);

    options.body = {
 "version": "v2",
 "content": {
 "messages": [
                            {
 "type": "cards",
 "elements": TableData,
 "image_aspect_ratio": "square"
                            }],
 "actions": [],
 "quick_replies": []}};
    console.log(ok(options));
 return ok(options);
}