try tu update
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
import {AxiosError} from "axios"
|
||||
|
||||
export function displayFormErrors(error: ValidationErrors|AxiosError, form: HTMLElement|null = null) {
|
||||
export function displayFormErrors(error: ValidationErrors, form: HTMLElement|null = null) {
|
||||
if (error.response && error.response.status === 422) {
|
||||
// @ts-ignore
|
||||
const errors = error.response.data.errors
|
||||
const formBase = (form) ? form : document.body
|
||||
Object.entries(errors).forEach(([key, value]) => {
|
||||
|
||||
Reference in New Issue
Block a user