🐛 Sørger for at feilmelding som blir sendt fra frontend matcher feilmeldingsobjekt i backend

Co-authored-by: Sindre Kjelsrud <sindre.kjelsrud@nav.no>
This commit is contained in:
Amalie Mansåker 2023-08-01 10:32:15 +02:00
parent 0fbde2fa57
commit 791c709399

View file

@ -18,7 +18,9 @@ export default function Feil() {
const payload = { const payload = {
tittel: tittel, tittel: tittel,
beskrivelse: beskrivelse, beskrivelse: beskrivelse,
dato: new Date().toISOString().replace('Z', '') dato: new Date().toISOString().replace('Z', ''), // Litt wack fix, burde endres
arbeidsstatus: 0,
haster: false
} }
axios.post("/api/nyfeil", payload, { axios.post("/api/nyfeil", payload, {