This commit is contained in:
ammarahm-ed
2021-12-25 11:16:33 +05:00
parent 73f961d7d8
commit 928e8debef
22 changed files with 55 additions and 60 deletions

View File

@@ -17,7 +17,7 @@ import {getTotalNotes} from '../../utils';
import {db} from '../../utils/database';
import {eOpenMoveNoteDialog} from '../../utils/Events';
import {pv, SIZE} from '../../utils/SizeUtils';
import ActionSheetWrapper from '../ActionSheetComponent/ActionSheetWrapper';
import SheetWrapper from '../sheet';
import {Button} from '../Button';
import DialogHeader from '../Dialog/dialog-header';
import {PressableButton} from '../PressableButton';
@@ -68,9 +68,9 @@ const MoveNoteDialog = () => {
};
return !visible ? null : (
<ActionSheetWrapper fwdRef={actionSheetRef} onClose={_onClose}>
<SheetWrapper fwdRef={actionSheetRef} onClose={_onClose}>
<MoveNoteComponent close={close} note={note} setNote={update} />
</ActionSheetWrapper>
</SheetWrapper>
);
};