File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
components/mdx_components Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export const SessionList: React.FC<SessionListPropType> = ErrorBoundary.with(
5656 Suspense . with ( { fallback : < CircularProgress /> } , ( { event, types } ) => {
5757 const { language } = Hooks . Common . useCommonContext ( ) ;
5858 const backendAPIClient = Hooks . BackendAPI . useBackendClient ( ) ;
59- const params = { ...( event && { event } ) , ...( types && { types } ) } ;
59+ const params = { ...( event && { event } ) , ...( types && { types : types . join ( "," ) } ) } ;
6060 const { data : sessions } = Hooks . BackendAPI . useSessionsQuery ( backendAPIClient , params ) ;
6161
6262 const warningMessage =
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ namespace BackendAPISchemas {
7272
7373 export type SessionQueryParameterSchema = {
7474 event ?: string ;
75- types ?: string [ ] ;
75+ types ?: string ;
7676 } ;
7777
7878 export type SessionSchema = {
You can’t perform that action at this time.
0 commit comments