diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/view/com/util/post-ctrls/RepostButton.tsx
index eb7505d2ed5..06b1fcaf6bf 100644
--- a/src/view/com/util/post-ctrls/RepostButton.tsx
+++ b/src/view/com/util/post-ctrls/RepostButton.tsx
@@ -1,6 +1,6 @@
import React, {memo, useCallback} from 'react'
import {View} from 'react-native'
-import {msg, plural} from '@lingui/macro'
+import {msg, plural, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {POST_CTRL_HITSLOP} from '#/lib/constants'
@@ -151,9 +151,11 @@ let RepostButtonDialogInner = ({
color="primary">
- {isReposted
- ? _(msg`Remove repost`)
- : _(msg({message: `Repost`, context: 'action'}))}
+ {isReposted ? (
+ Remove repost
+ ) : (
+ Repost
+ )}
@@ -193,9 +197,11 @@ let RepostButtonDialogInner = ({
label={_(msg`Cancel quote post`)}
onPress={onPressClose}
size="large"
- variant="solid"
+ variant="outline"
color="primary">
- {_(msg`Cancel`)}
+
+ Cancel
+