diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-04-30 18:15:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-30 18:15:48 +0100 |
commit | 7b694fd860d165296e1aebd4420d97d77f7681fa (patch) | |
tree | 7f7c5ebb6743163f6f490f39ceac830be035effd /src/view/shell/bottom-bar/BottomBarWeb.tsx | |
parent | bcd3678067c2b807582794ce72f26c3af25d3a75 (diff) | |
download | voidsky-7b694fd860d165296e1aebd4420d97d77f7681fa.tar.zst |
[Clipclops] Use API data for clipclop list (#3769)
* use real API * remove extra tab icon * messages list web layout + style improvements * use style's text color for input * make new chat button way more obvious --------- Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarWeb.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarWeb.tsx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarWeb.tsx b/src/view/shell/bottom-bar/BottomBarWeb.tsx index d8deaf696..8b316faa5 100644 --- a/src/view/shell/bottom-bar/BottomBarWeb.tsx +++ b/src/view/shell/bottom-bar/BottomBarWeb.tsx @@ -122,16 +122,6 @@ export function BottomBarWeb() { ) }} </NavItem> - <NavItem routeName="Messages" href="/messages"> - {() => { - return ( - <Envelope - size="lg" - style={[styles.ctrlIcon, pal.text, styles.messagesIcon]} - /> - ) - }} - </NavItem> {gate('dms') && ( <NavItem routeName="Messages" href="/messages"> {({isActive}) => { |