Rename quotepostDisabled

This commit is contained in:
Eric Bailey
2024-08-12 14:54:27 -05:00
parent 6a77323cbe
commit 6e280b7737
3 changed files with 7 additions and 7 deletions
@@ -20,7 +20,7 @@ interface Props {
onRepost: () => void
onQuote: () => void
big?: boolean
quotepostDisabled: boolean
embeddingDisabled: boolean
}
export const RepostButton = ({
@@ -29,7 +29,7 @@ export const RepostButton = ({
onRepost,
onQuote,
big,
quotepostDisabled,
embeddingDisabled,
}: Props) => {
const t = useTheme()
const {_} = useLingui()
@@ -77,7 +77,7 @@ export const RepostButton = ({
</Menu.ItemText>
<Menu.ItemIcon icon={Repost} position="right" />
</Menu.Item>
{quotepostDisabled ? null : (
{embeddingDisabled ? null : (
<Menu.Item
label={_(msg`Quote post`)}
testID="repostDropdownQuoteBtn"