diff --git a/pkg/interface/src/views/components/chat-link-tabbar.js b/pkg/interface/src/views/components/chat-link-tabbar.js index da6e48dff..9b8f9a5b1 100644 --- a/pkg/interface/src/views/components/chat-link-tabbar.js +++ b/pkg/interface/src/views/components/chat-link-tabbar.js @@ -1,13 +1,14 @@ import React from 'react'; import { Link } from 'react-router-dom'; +import { Box } from '@tlon/indigo-react'; + export const TabBar = (props) => { const { location, settings, - popoutHref } = props; - let setColor = '', popout = ''; + let setColor = ''; if (location.pathname.includes('/settings')) { setColor = 'black white-d'; @@ -15,28 +16,15 @@ export const TabBar = (props) => { setColor = 'gray3'; } - const hidePopoutIcon = (popout) - ? 'dn-m dn-l dn-xl' : 'dib-m dib-l dib-xl'; - return ( -
-
+ + Settings -
- - - -
+ + ); };