fix: added support for date, matrix, address and cal question to notion integration (#2726)

This commit is contained in:
Dhruwang Jariwala
2024-06-03 20:36:50 +05:30
committed by GitHub
parent cb44b575c2
commit 48638e8ca2
3 changed files with 11 additions and 4 deletions
@@ -165,7 +165,7 @@ const buildNotionPayloadProperties = (
const value = responses[map.question.id];
properties[map.column.name] = {
[map.column.type]: getValue(map.column.type, value),
[map.column.type]: getValue(map.column.type, processResponseData(value)),
};
});