fixup! fixup! th: quotes

main
VT Social 2024-07-13 10:09:51 +00:00
parent 30aa632979
commit b55b195aa1
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import { Icon } from 'mastodon/components/icon';
export const ReplyIndicator = () => {
const inReplyToId = useSelector(state => state.getIn(['compose', 'in_reply_to']));
const quoteId = useSelector(state => state.getIn(['compose', 'quote_id']));
const status = useSelector(state => state.getIn(['statuses', inReplyToId || quote_id]));
const status = useSelector(state => state.getIn(['statuses', inReplyToId || quoteId]));
const account = useSelector(state => state.getIn(['accounts', status?.get('account')]));
if (!status) {