From fe7b851157dd7cf9f38b004764e5eb4ce9e66fdc Mon Sep 17 00:00:00 2001 From: vikingowl Date: Thu, 24 Mar 2022 10:20:20 +0100 Subject: [PATCH] updated infoState.ts --- src/stores/infoState.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/infoState.ts b/src/stores/infoState.ts index ae95d61..bd3c240 100644 --- a/src/stores/infoState.ts +++ b/src/stores/infoState.ts @@ -1,7 +1,7 @@ import { defineStore } from "pinia"; export type infoState = { - statuscode: number; + statusCode: number; message: string; type: "error" | "success" | "warning"; };