diff options
author | Khuddite <62555977+khuddite@users.noreply.github.com> | 2024-11-11 18:21:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-11 23:21:07 +0000 |
commit | 5ee809e4213b57693fc6767c86d66d73382064db (patch) | |
tree | 106958823ef6c8550dfcfbcd31d2516a55733e34 | |
parent | 7008f61ea4cb356997f139bfe84fba98fcad805b (diff) | |
download | voidsky-5ee809e4213b57693fc6767c86d66d73382064db.tar.zst |
Update error component of lists to take up the full height instead of its content height (#6236)
Co-authored-by: Samuel Newman <mozzius@protonmail.com>
-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 6c09df0ee..2819986b3 100644 --- a/src/components/Error.tsx +++ b/src/components/Error.tsx @@ -32,7 +32,7 @@ export function Error({ return ( <CenteredView style={[ - a.w_full, + a.h_full_vh, a.align_center, a.gap_5xl, !gtMobile && a.justify_between, |