Account creation improvements & some other fixes (#2636)
* Quick fix to mobile * Enlarge tap targets in account creation * Improve keyboard behaviors during account creation * Improve autocompletion behaviors during account creation * Use the logo in the Deactivated screen
This commit is contained in:
parent
c8175b9c4e
commit
6149437c05
6 changed files with 28 additions and 18 deletions
|
@ -68,11 +68,9 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => {
|
|||
</>
|
||||
}
|
||||
href={makeProfileLink(opts.author)}
|
||||
onPointerEnter={() => {
|
||||
if (isWeb) {
|
||||
prefetchProfileQuery(opts.author.did)
|
||||
}
|
||||
}}
|
||||
onPointerEnter={
|
||||
isWeb ? () => prefetchProfileQuery(opts.author.did) : undefined
|
||||
}
|
||||
/>
|
||||
</View>
|
||||
{!isAndroid && (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue