Skip to content

Commit

Permalink
Fix format errors
Browse files Browse the repository at this point in the history
  • Loading branch information
c-bata committed Sep 9, 2023
1 parent b5de9d5 commit c32a1d1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dashboard/src/apiClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ interface StudyDetailResponse {
has_intermediate_values: boolean
}

export const getStudyDetailAPI = (
studyId: number,
): Promise<StudyDetail> => {
export const getStudyDetailAPI = (studyId: number): Promise<StudyDetail> => {
return axiosInstance
.get<StudyDetailResponse>(`/api/studies/${studyId}`, {})
.then((res) => {
Expand Down

0 comments on commit c32a1d1

Please sign in to comment.