diff --git a/frontend/src/js/preview/tableUtils.ts b/frontend/src/js/preview/tableUtils.ts index a61d73e4e9..2ee65d8888 100644 --- a/frontend/src/js/preview/tableUtils.ts +++ b/frontend/src/js/preview/tableUtils.ts @@ -71,7 +71,7 @@ export function useCustomTableRenderers(queryData: GetQueryResponseDoneT) { } else if (cellType === "MONEY") { return (value) => { if (value && !isNaN(value as unknown as number)) { - return currencyFormatter.format(value as unknown as number); + return currencyFormatter.format((value as unknown as number) / 100); // MONEY is sent as cent } return ""; };