From 4082f64e7857423794cb7f2569e813ec4d7eb3e1 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 26 May 2021 21:16:08 +0200 Subject: [PATCH] [chore] Run prettier --- src/store.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store.ts b/src/store.ts index 166f625..6212432 100644 --- a/src/store.ts +++ b/src/store.ts @@ -44,10 +44,10 @@ export const useScheduleStore = defineStore({ async addJobType(name: string) { try { const { data } = await api.post('/events/job-types', { name: name }); - this.jobTypes.push(data) + this.jobTypes.push(data); } catch (error) { // TODO: HANDLE ERROR - throw error + throw error; } },