From 8f43f904ec29ffef60b1eb0b1509433a4342d861 Mon Sep 17 00:00:00 2001 From: freyamade Date: Mon, 13 Jun 2022 10:48:39 +0100 Subject: [PATCH] fixing interface build issue that I missed --- frontend/src/interfaces/responses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/interfaces/responses.ts b/frontend/src/interfaces/responses.ts index ddf000b6..0eef9005 100644 --- a/frontend/src/interfaces/responses.ts +++ b/frontend/src/interfaces/responses.ts @@ -44,7 +44,7 @@ export interface CreateResponse { // Interface defining the potential error responses that can come from the Character.create method export interface CharacterCreateErrors { - lodestone_id?: string[] + lodestone_id: string[] [key: string]: string[] }