From 685f022fce844a00b7acdce25362e54caf2ab13b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aykut=20Sara=C3=A7?= Date: Wed, 16 Feb 2022 21:25:07 +0300 Subject: [PATCH] fix typo --- src/utils/json-editor-parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/json-editor-parser.ts b/src/utils/json-editor-parser.ts index a05456e..a2dddc4 100644 --- a/src/utils/json-editor-parser.ts +++ b/src/utils/json-editor-parser.ts @@ -51,7 +51,7 @@ export const parser = (input: string | string[]) => { return [...flatten(res), ...relationships(res)]; } catch (error) { - toast.error("An error occured while parsin JSON data!"); + toast.error("An error occured while parsing JSON data!"); return []; } };