diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-01 18:43:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 18:43:54 +0100 |
commit | 8304ad91ac3862becca5b3f4f7fd90b8b39d1dea (patch) | |
tree | 60abb61a8b8e54e7e24c7982674cb7133ca2add3 /src/components/Error.tsx | |
parent | 538ca8dff16e9973a0fd4c310dd89cfe05536f6b (diff) | |
download | voidsky-8304ad91ac3862becca5b3f4f7fd90b8b39d1dea.tar.zst |
add header to empty chat list view (#3791)
Diffstat (limited to 'src/components/Error.tsx')
-rw-r--r-- | src/components/Error.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Error.tsx b/src/components/Error.tsx index ee479cca9..481532434 100644 --- a/src/components/Error.tsx +++ b/src/components/Error.tsx @@ -72,7 +72,7 @@ export function Error({ a.text_center, t.atoms.text_contrast_high, {lineHeight: 1.4}, - gtMobile && {width: 450}, + gtMobile ? {width: 450} : [a.w_full, a.px_lg], ]}> {message} </Text> |