From c41600ee145dd8d52a6b013b54b1a7cfa0affc0c Mon Sep 17 00:00:00 2001 From: DylanDylann Date: Wed, 11 Oct 2023 06:07:55 +0700 Subject: [PATCH] fix: remove default export --- src/libs/actions/Report.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js index ed70fe68e25f..27a02b1fc75f 100644 --- a/src/libs/actions/Report.js +++ b/src/libs/actions/Report.js @@ -2196,7 +2196,7 @@ function clearPrivateNotesError(reportID, accountID) { Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${reportID}`, {privateNotes: {[accountID]: {errors: null}}}); } -export default function getDraftPrivateNote(reportID) { +function getDraftPrivateNote(reportID) { return draftNoteMap[reportID]; }