Fix notifications marker fetch (#29777)
This commit is contained in:
		
							parent
							
								
									9fbe8d3a0c
								
							
						
					
					
						commit
						b9982ce578
					
				@ -155,8 +155,10 @@ export const submitMarkers = createAppAsyncThunk(
 | 
				
			|||||||
export const fetchMarkers = createAppAsyncThunk(
 | 
					export const fetchMarkers = createAppAsyncThunk(
 | 
				
			||||||
  'markers/fetch',
 | 
					  'markers/fetch',
 | 
				
			||||||
  async (_args, { getState }) => {
 | 
					  async (_args, { getState }) => {
 | 
				
			||||||
    const response =
 | 
					    const response = await api(getState).get<Record<string, MarkerJSON>>(
 | 
				
			||||||
      await api(getState).get<Record<string, MarkerJSON>>(`/api/v1/markers`);
 | 
					      `/api/v1/markers`,
 | 
				
			||||||
 | 
					      { params: { timeline: ['notifications'] } },
 | 
				
			||||||
 | 
					    );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return { markers: response.data };
 | 
					    return { markers: response.data };
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user