diff options
author | dan <dan.abramov@gmail.com> | 2024-08-29 18:57:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 18:57:36 +0100 |
commit | faf66f3178fbddcfaab9c851b9315f20cd285c38 (patch) | |
tree | f0072c6359184760c232ab7d7371724a0c66f6b1 /src/view/shell/bottom-bar/BottomBarWeb.tsx | |
parent | 69053b1b0add68cc04ce7bc336ed65b2514e207b (diff) | |
download | voidsky-faf66f3178fbddcfaab9c851b9315f20cd285c38.tar.zst |
Remove new_user_guided_tour and tour code (#5023)
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarWeb.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarWeb.tsx | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarWeb.tsx b/src/view/shell/bottom-bar/BottomBarWeb.tsx index c89d2a63c..21c253ee0 100644 --- a/src/view/shell/bottom-bar/BottomBarWeb.tsx +++ b/src/view/shell/bottom-bar/BottomBarWeb.tsx @@ -41,7 +41,6 @@ import { UserCircle_Filled_Corner0_Rounded as UserCircleFilled, UserCircle_Stroke2_Corner0_Rounded as UserCircle, } from '#/components/icons/UserCircle' -import {HomeTourExploreWrapper} from '#/tours/HomeTour' import {styles} from './BottomBarStyles' export function BottomBarWeb() { @@ -95,12 +94,10 @@ export function BottomBarWeb() { {({isActive}) => { const Icon = isActive ? MagnifyingGlassFilled : MagnifyingGlass return ( - <HomeTourExploreWrapper> - <Icon - width={iconWidth + 2} - style={[styles.ctrlIcon, pal.text, styles.searchIcon]} - /> - </HomeTourExploreWrapper> + <Icon + width={iconWidth + 2} + style={[styles.ctrlIcon, pal.text, styles.searchIcon]} + /> ) }} </NavItem> |