cutting out more crap...know my main value

This commit is contained in:
talksik
2022-06-20 15:15:33 -05:00
parent c27e9cc29f
commit 09dddb13a2
2 changed files with 13 additions and 40 deletions
+1 -30
View File
@@ -68,35 +68,7 @@ export function ConversationList() {
} }
return ( return (
<> <List>
<List
subheader={
<ListSubheader>
<FiZap />
<Typography variant="subtitle2"> Favorites</Typography>
</ListSubheader>
}
>
<Stack direction={'column'} alignItems="center">
<Typography align="center" variant="caption">
Add your favorites here for quick dialing
</Typography>
</Stack>
</List>
<Divider />
<List
sx={{
pt: 2,
}}
subheader={
<ListSubheader>
<FiInbox />
<Typography variant="subtitle2"> Inbox</Typography>
</ListSubheader>
}
>
{inboxConversations.map((currentConversation, index) => ( {inboxConversations.map((currentConversation, index) => (
<ConversationRow <ConversationRow
key={`${currentConversation._id.toString()}-inboxConvoList`} key={`${currentConversation._id.toString()}-inboxConvoList`}
@@ -106,7 +78,6 @@ export function ConversationList() {
/> />
))} ))}
</List> </List>
</>
); );
} }
+3 -1
View File
@@ -50,7 +50,9 @@ export default function Terminal() {
> >
<Navbar /> <Navbar />
<Box sx={{ p: 2 }}>{searchQuery ? <OmniSearchResults /> : <ConversationList />}</Box> <Box sx={{ p: 2, pt: 0 }}>
{searchQuery ? <OmniSearchResults /> : <ConversationList />}
</Box>
</Grid> </Grid>
<Grid <Grid