diff options
author | Ansh <anshnanda10@gmail.com> | 2023-06-07 09:11:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 11:11:04 -0500 |
commit | 0be14a1b46fc55c482b5e2171e94615a73114fd2 (patch) | |
tree | 2b70f41a2e8076bc17492aa007cadf1234a1a893 /src/view/com/modals/Modal.tsx | |
parent | fc12a1205cceab323f1165205cd68268ff291436 (diff) | |
download | voidsky-0be14a1b46fc55c482b5e2171e94615a73114fd2.tar.zst |
[APP-680] Allow users to add details when reporting (#854)
* allow user to add text when reporting post * add DMCA override * increase modal size * fix dark mode text color * re-organize components * add details option when reporting account * hard-code modal size so it works on smaller devices * fix modal on web * Remove outline from textarea focus * Tweak some styles * Fix lint --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/com/modals/Modal.tsx')
-rw-r--r-- | src/view/com/modals/Modal.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index 1043db20e..864dcc847 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -10,13 +10,13 @@ import {usePalette} from 'lib/hooks/usePalette' import * as ConfirmModal from './Confirm' import * as EditProfileModal from './EditProfile' import * as ServerInputModal from './ServerInput' -import * as ReportPostModal from './ReportPost' +import * as ReportPostModal from './report/ReportPost' import * as RepostModal from './Repost' import * as CreateOrEditMuteListModal from './CreateOrEditMuteList' import * as ListAddRemoveUserModal from './ListAddRemoveUser' import * as AltImageModal from './AltImage' import * as EditImageModal from './AltImage' -import * as ReportAccountModal from './ReportAccount' +import * as ReportAccountModal from './report/ReportAccount' import * as DeleteAccountModal from './DeleteAccount' import * as ChangeHandleModal from './ChangeHandle' import * as WaitlistModal from './Waitlist' |