Skip to content

Commit

Permalink
fixed log server url for post calls
Browse files Browse the repository at this point in the history
  • Loading branch information
parthrdesai committed Jan 24, 2025
1 parent 6772164 commit c55c6ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/herbie/ErrorPlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ function ErrorPlot() {
// TODO: would we rather layer? (unselect point would return to whatever previous state was: un/brushed)
setSelectedSubset(undefined)
await (getApi(
'http://localhost:8003/log',
'https://herbie.uwplse.org/odyssey-log/log',
{sessionId: sessionStorage.getItem('sessionId'),
SelectedPoint: point,
SelectedExpression: expressions.find(e => e.id === id)?.text,
Expand Down
4 changes: 2 additions & 2 deletions src/herbie/ExpressionTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function ExpressionTable() {
setAddExpression('')

await (getApi(
'http://localhost:8003/log',
'https://herbie.uwplse.org/odyssey-log/log',
{
sessionId: sessionStorage.getItem('sessionId'),
expression: addExpression,
Expand Down Expand Up @@ -240,7 +240,7 @@ function ExpressionTable() {
newExpressions.push(newExpression);

await (getApi(
'http://localhost:8003/log',
'https://herbie.uwplse.org/odyssey-log/log',
{
sessionId: sessionStorage.getItem('sessionId'),
expression: fPCoreToMathJS,
Expand Down
2 changes: 1 addition & 1 deletion src/herbie/SpecComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function SpecConfigComponent() {
}

await (getApi(
'http://localhost:8003/log',
'https://herbie.uwplse.org/odyssey-log/log',
{
sessionId: sessionStorage.getItem('sessionId'),
expression: spec.expression,
Expand Down

0 comments on commit c55c6ae

Please sign in to comment.