Skip to content

Commit e59dbc9

Browse files
Revision 2: Fix prettier formatting for frontend batch update mutations
1 parent f07f714 commit e59dbc9

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

apps/opik-frontend/src/api/traces/useSpanBatchUpdateMutation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ const useSpanBatchUpdateMutation = () => {
5353
};
5454

5555
export default useSpanBatchUpdateMutation;
56-

apps/opik-frontend/src/api/traces/useThreadBatchUpdateMutation.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,11 @@ const useThreadBatchUpdateMutation = () => {
2424
thread,
2525
mergeTags,
2626
}: UseThreadBatchUpdateMutationParams) => {
27-
const { data } = await api.patch(
28-
TRACES_REST_ENDPOINT + "threads/batch",
29-
{
30-
ids: threadIds,
31-
update: thread,
32-
merge_tags: mergeTags,
33-
},
34-
);
27+
const { data } = await api.patch(TRACES_REST_ENDPOINT + "threads/batch", {
28+
ids: threadIds,
29+
update: thread,
30+
merge_tags: mergeTags,
31+
});
3532

3633
return data;
3734
},
@@ -57,4 +54,3 @@ const useThreadBatchUpdateMutation = () => {
5754
};
5855

5956
export default useThreadBatchUpdateMutation;
60-

apps/opik-frontend/src/api/traces/useTraceBatchUpdateMutation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ const useTraceBatchUpdateMutation = () => {
5353
};
5454

5555
export default useTraceBatchUpdateMutation;
56-

apps/opik-frontend/src/components/pages/TracesPage/ThreadsTab/ThreadsActionsPanel.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,3 @@ const ThreadsActionsPanel: React.FunctionComponent<
169169
};
170170

171171
export default ThreadsActionsPanel;
172-

0 commit comments

Comments
 (0)