File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
app/(app)/team/[team_slug]/(team) Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ export async function getSupportTicket(
163163 if ( messagesResponse . ok ) {
164164 const messagesData : { data ?: unknown [ ] } = await messagesResponse . json ( ) ;
165165 const rawMessages = messagesData . data || [ ] ;
166- console . log ( "rawMessages" , rawMessages ) ;
167166 // Transform the raw messages to match our interface
168167 const messages : SupportMessage [ ] = ( rawMessages as RawSupportMessage [ ] )
169168 . filter ( ( msg ) => {
Original file line number Diff line number Diff line change 66 DatabaseIcon ,
77 DollarSignIcon ,
88 FileTextIcon ,
9+ HelpCircleIcon ,
910 HomeIcon ,
1011 SettingsIcon ,
1112 WalletCardsIcon ,
@@ -64,6 +65,11 @@ export function TeamSidebarLayout(props: {
6465 icon : DatabaseIcon ,
6566 label : "Usage" ,
6667 } ,
68+ {
69+ href : `${ layoutPath } /~/support` ,
70+ icon : HelpCircleIcon ,
71+ label : "Support" ,
72+ } ,
6773 ...( props . chainSubscriptions . length > 0
6874 ? [
6975 {
You can’t perform that action at this time.
0 commit comments