Skip to content

Commit

Permalink
remove slash (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
shincap8 authored Aug 13, 2024
1 parent ac40def commit 40f2b0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const SelectMultipleTextMultipleTags: FC<
setLoading2(true);
setSelectionInfo([]);
fetch(
`${process.env.REACT_APP_API_HOST_2}/context/get_random_context_from_key_value/`,
`${process.env.REACT_APP_API_HOST_2}/context/get_random_context_from_key_value`,
{
method: "POST",
headers: {
Expand Down Expand Up @@ -156,7 +156,7 @@ const SelectMultipleTextMultipleTags: FC<
const newSelectionInfo = cleanUpSelection(selectionInfo, "color");
const sendText = text;
setText(undefined);
await post("/example/create_example/", {
await post("/example/create_example", {
context_id: contextId,
user_id: userId,
input_json: { labels: newSelectionInfo },
Expand Down

0 comments on commit 40f2b0e

Please sign in to comment.