diff options
| -rw-r--r-- | front/src/Main.elm | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/front/src/Main.elm b/front/src/Main.elm index ca81647..52bc4c9 100644 --- a/front/src/Main.elm +++ b/front/src/Main.elm @@ -178,7 +178,7 @@ parseMortgageSpecs { totalValue, financedRate, i1, years } =  mortgageSpecsToURL : MortgageSpecs -> String  mortgageSpecsToURL { principal, i1, years } = -    UB.absolute [ "/api/simulate" ] +    UB.absolute [ "api", "simulate" ]          [ UB.string "principal" (String.fromFloat principal)          , UB.string "i1" (String.fromFloat (i1 / 100))          , UB.int "years" years  | 
