diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-08-22 16:37:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 16:37:04 -0700 |
commit | 8e1d0b03962ba093b26efee4673b8420a41f63a2 (patch) | |
tree | 083417d3fed47055ecf624c7881d5c014ec863f5 | |
parent | 54706a04379127694be24461fdfb5f76c576fce0 (diff) | |
download | voidsky-8e1d0b03962ba093b26efee4673b8420a41f63a2.tar.zst |
Change Handle modal DNS instruction tweaks for clarity (#1245)
* Remove potentially confusing period from subdomain in changehandle (close #1004) * Clarify dns instructions further (close #1087)
-rw-r--r-- | src/view/com/modals/ChangeHandle.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/com/modals/ChangeHandle.tsx b/src/view/com/modals/ChangeHandle.tsx index 0b9707622..09d41825f 100644 --- a/src/view/com/modals/ChangeHandle.tsx +++ b/src/view/com/modals/ChangeHandle.tsx @@ -418,7 +418,7 @@ function CustomHandleForm({ </Text> <View style={[styles.dnsValue]}> <Text type="mono" style={[styles.monoText, pal.text]}> - _atproto. + _atproto </Text> </View> <Text type="md-medium" style={[styles.dnsLabel, pal.text]}> @@ -438,6 +438,12 @@ function CustomHandleForm({ </Text> </View> </View> + <Text type="md" style={[pal.text, s.pt20, s.pl5]}> + This should create a domain record at:{' '} + </Text> + <Text type="mono" style={[styles.monoText, pal.text, s.pt5, s.pl5]}> + _atproto.{handle} + </Text> </> ) : ( <> |