Skip to content

Commit e218e11

Browse files
authored
use info true and flat false when getting a basestudy (#696)
1 parent 087f0e4 commit e218e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compose/neurosynth-frontend/src/hooks/studies/useGetBaseStudyById.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import API from 'utils/api';
44
const useGetBaseStudyById = (baseStudyId: string) => {
55
return useQuery(
66
['studies', baseStudyId],
7-
() => API.NeurostoreServices.BaseStudiesService.baseStudiesIdGet(baseStudyId, true, true),
7+
() => API.NeurostoreServices.BaseStudiesService.baseStudiesIdGet(baseStudyId, false, true),
88
{
99
select: (res) => {
1010
return res.data;

0 commit comments

Comments
 (0)