1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Full login flow working

Refresh can be faster
This commit is contained in:
Zhiyuan Zheng
2020-11-21 00:40:55 +01:00
parent ab0062e73c
commit 3280663144
27 changed files with 330 additions and 138 deletions

View File

@ -15,7 +15,7 @@ const renderNode = ({
node: HTMLViewNode
index: number
navigation: any
mentions?: mastodon.Mention[]
mentions?: Mastodon.Mention[]
showFullLink: boolean
}) => {
if (node.name == 'a') {
@ -80,9 +80,9 @@ const renderNode = ({
export interface Props {
content: string
emojis?: mastodon.Emoji[]
emojis?: Mastodon.Emoji[]
emojiSize?: number
mentions?: mastodon.Mention[]
mentions?: Mastodon.Mention[]
showFullLink?: boolean
linesTruncated?: number
}