diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-01-15 15:03:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 15:03:54 -0800 |
commit | a7d617c7a616b6f6a8e0db41f02e052d6bd077e8 (patch) | |
tree | b20cc4ad13db4ba3813e791b534731af1dfc652e /src/view/com/modals/DeleteAccount.tsx | |
parent | 7df0b7ade14cc8015996cb23f052066b7ae3131b (diff) | |
download | voidsky-a7d617c7a616b6f6a8e0db41f02e052d6bd077e8.tar.zst |
Add a new home feed-api wrapper and give a header indicating the fallback behavior (#2534)
* Add a new home feed-api wrapper and give a header indicating the fallback behavior * Sneak in a quick fix: use the correct text color in the delete modal * Use imported constant
Diffstat (limited to 'src/view/com/modals/DeleteAccount.tsx')
-rw-r--r-- | src/view/com/modals/DeleteAccount.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/view/com/modals/DeleteAccount.tsx b/src/view/com/modals/DeleteAccount.tsx index 0cfc098d4..945d7bc89 100644 --- a/src/view/com/modals/DeleteAccount.tsx +++ b/src/view/com/modals/DeleteAccount.tsx @@ -160,7 +160,7 @@ export function Component({}: {}) { {/* TODO: Update this label to be more concise */} <Text type="lg" - style={styles.description} + style={[pal.text, styles.description]} nativeID="confirmationCode"> <Trans> Check your inbox for an email with the confirmation code to @@ -180,7 +180,10 @@ export function Component({}: {}) { msg`Input confirmation code for account deletion`, )} /> - <Text type="lg" style={styles.description} nativeID="password"> + <Text + type="lg" + style={[pal.text, styles.description]} + nativeID="password"> <Trans>Please enter your password as well:</Trans> </Text> <TextInput |