diff options
author | Eric Bailey <git@esb.lol> | 2023-08-25 10:47:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 08:47:12 -0700 |
commit | 953ae9c096a5f32ed0569bb050a172b4a734606c (patch) | |
tree | 909183618ae3c1fd3253afeba72ef77fde29b4d3 /src | |
parent | 37a70f0a67c3a7f056dfffa6357dc912649c7792 (diff) | |
download | voidsky-953ae9c096a5f32ed0569bb050a172b4a734606c.tar.zst |
Update/fix `ChangeHandle` form (#1280)
* fix well-known did copy value * s/Domain/Host in change handle form
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/modals/ChangeHandle.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/modals/ChangeHandle.tsx b/src/view/com/modals/ChangeHandle.tsx index 09d41825f..a1226680e 100644 --- a/src/view/com/modals/ChangeHandle.tsx +++ b/src/view/com/modals/ChangeHandle.tsx @@ -316,9 +316,9 @@ function CustomHandleForm({ // events // = const onPressCopy = React.useCallback(() => { - Clipboard.setString(`did=${store.me.did}`) + Clipboard.setString(isDNSForm ? `did=${store.me.did}` : store.me.did) Toast.show('Copied to clipboard') - }, [store.me.did]) + }, [store.me.did, isDNSForm]) const onChangeHandle = React.useCallback( (v: string) => { setHandle(v) @@ -410,11 +410,11 @@ function CustomHandleForm({ {isDNSForm ? ( <> <Text type="md" style={[pal.text, s.pb5, s.pl5]}> - Add the following record to your domain: + Add the following DNS record to your domain: </Text> <View style={[styles.dnsTable, pal.btn]}> <Text type="md-medium" style={[styles.dnsLabel, pal.text]}> - Domain: + Host: </Text> <View style={[styles.dnsValue]}> <Text type="mono" style={[styles.monoText, pal.text]}> |