We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8590b45 commit 301ea2bCopy full SHA for 301ea2b
package/src/store/apis/getDraft.ts
@@ -23,8 +23,6 @@ export const getDraft = async ({
23
parent_id: parent_id ?? null,
24
});
25
26
- console.log('getDraft draftRowsWithMessage', draftRowsWithMessage);
27
-
28
if (!draftRowsWithMessage) return null;
29
30
const draftRowWithMessage = draftRowsWithMessage;
package/src/store/apis/queries/selectDraftMessageFromDraft.ts
@@ -37,7 +37,5 @@ export const selectDraftMessageFromDraft = async ({
37
[cid, parent_id],
38
);
39
40
- console.log('selectDraftMessageFromDraft result', result);
41
42
return result[0] ? JSON.parse(result[0].value) : undefined;
43
};
0 commit comments