diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-03-16 17:04:45 +0900 |
---|---|---|
committer | Minseo Lee <itoupluk427@gmail.com> | 2024-03-16 17:04:45 +0900 |
commit | 86d036cca8ea1546908b2e53b985162bc8023d3d (patch) | |
tree | 065d4d38c7655b58cc90e9330250adb4e5af0857 /src | |
parent | a3786ee5cddceaa6efa78bf4ec2c9768f3abc674 (diff) | |
download | voidsky-86d036cca8ea1546908b2e53b985162bc8023d3d.tar.zst |
Update Modal.tsx
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/modals/report/Modal.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/modals/report/Modal.tsx b/src/view/com/modals/report/Modal.tsx index dbe364846..90697b078 100644 --- a/src/view/com/modals/report/Modal.tsx +++ b/src/view/com/modals/report/Modal.tsx @@ -131,7 +131,9 @@ export function Component(content: ReportComponentProps) { const getCollectionNameForReport = (atUri: AtUri | null) => { if (!atUri) return <Trans>Account</Trans> // Generic fallback for any collection being reported - return CollectionNames[atUri.collection as CollectionId] || <Trans>Content</Trans> + return ( + CollectionNames[atUri.collection as CollectionId] || <Trans>Content</Trans> + ) } const SelectIssue = ({ |