[chore] Run prettier

This commit is contained in:
Ferdinand Thiessen 2021-05-26 21:16:08 +02:00
parent 9981ba487b
commit 4082f64e78
1 changed files with 2 additions and 2 deletions

View File

@ -44,10 +44,10 @@ export const useScheduleStore = defineStore({
async addJobType(name: string) { async addJobType(name: string) {
try { try {
const { data } = await api.post<FG.JobType>('/events/job-types', { name: name }); const { data } = await api.post<FG.JobType>('/events/job-types', { name: name });
this.jobTypes.push(data) this.jobTypes.push(data);
} catch (error) { } catch (error) {
// TODO: HANDLE ERROR // TODO: HANDLE ERROR
throw error throw error;
} }
}, },