diff options
author | Eric Bailey <git@esb.lol> | 2023-07-18 15:26:04 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2023-07-18 15:26:04 -0500 |
commit | 9ef54814f08a7a5ee840a8016c7dc37e9e96fb97 (patch) | |
tree | 422bd52a3488cda60b755b2a12e2a2618b9a0053 /src | |
parent | 1ca5792165fc690541ada3a74b42f4e64ff84da7 (diff) | |
download | voidsky-9ef54814f08a7a5ee840a8016c7dc37e9e96fb97.tar.zst |
fix lint
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/Composer.web.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/shell/Composer.web.tsx b/src/view/shell/Composer.web.tsx index d1a84c8d0..7eb16290a 100644 --- a/src/view/shell/Composer.web.tsx +++ b/src/view/shell/Composer.web.tsx @@ -65,6 +65,8 @@ const styles = StyleSheet.create({ borderRadius: isMobileWeb ? 0 : 8, marginBottom: isMobileWeb ? BOTTOM_BAR_HEIGHT : 0, borderWidth: 1, - maxHeight: isMobileWeb ? `calc(100% - ${BOTTOM_BAR_HEIGHT}px)` : 'calc(100% - (40px * 2))', + maxHeight: isMobileWeb + ? `calc(100% - ${BOTTOM_BAR_HEIGHT}px)` + : 'calc(100% - (40px * 2))', }, }) |