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 {
import filesystem from '../../utils/filesystem';
import { SIZE } from '../../utils/SizeUtils';
import { ActionIcon } from '../ActionIcon';
import ActionSheetWrapper from '../ActionSheetComponent/ActionSheetWrapper';
import SheetWrapper from '../sheet';
import DialogHeader from '../Dialog/dialog-header';
import GeneralSheet from '../GeneralSheet';
import Paragraph from '../Typography/Paragraph';
@@ -57,7 +57,7 @@ export const AttachmentDialog = () => {
};
return !visible ? null : (
<ActionSheetWrapper
<SheetWrapper
centered={false}
fwdRef={actionSheetRef}
onClose={async () => {
@@ -107,7 +107,7 @@ export const AttachmentDialog = () => {
{' '}All attachments are end-to-end encrypted.
</Paragraph>
</View>
</ActionSheetWrapper>
</SheetWrapper>
);
};