about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEvan <LegendEffects@users.noreply.github.com>2024-11-25 13:24:00 +0000
committerGitHub <noreply@github.com>2024-11-25 13:24:00 +0000
commit5164ca6288c233de1ea351e9d5e9a7218a8a3b34 (patch)
treeec43a9c560dff7d612046a3533346b657c691c94 /src
parentb9406aa011db2db7d3bcdf7d91ef929b17a07c02 (diff)
downloadvoidsky-5164ca6288c233de1ea351e9d5e9a7218a8a3b34.tar.zst
Make quote post enabled switch label text static (#6720)
* Make quote post enabled switch label text static

* Update PostInteractionSettingsDialog.tsx

* meh this is better

---------

Co-authored-by: dan <dan.abramov@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/dialogs/PostInteractionSettingsDialog.tsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/components/dialogs/PostInteractionSettingsDialog.tsx b/src/components/dialogs/PostInteractionSettingsDialog.tsx
index 8536001da..a698574a4 100644
--- a/src/components/dialogs/PostInteractionSettingsDialog.tsx
+++ b/src/components/dialogs/PostInteractionSettingsDialog.tsx
@@ -311,11 +311,7 @@ export function PostInteractionSettingsForm({
               onChange={onChangeQuotesEnabled}
               style={[a.justify_between, a.pt_xs]}>
               <Text style={[t.atoms.text_contrast_medium]}>
-                {quotesEnabled ? (
-                  <Trans>Quote posts enabled</Trans>
-                ) : (
-                  <Trans>Quote posts disabled</Trans>
-                )}
+                <Trans>Allow quote posts</Trans>
               </Text>
               <Toggle.Switch />
             </Toggle.Item>