From c9aefa81ca1950121d2357fc66afe15eb400f537 Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Fri, 15 Mar 2024 00:13:40 +0000 Subject: Fix eslint errors --- stores/export.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stores/export.ts') diff --git a/stores/export.ts b/stores/export.ts index 3f48aa3..f0ff260 100644 --- a/stores/export.ts +++ b/stores/export.ts @@ -1,4 +1,4 @@ -import { defineStore } from 'pinia' +import { defineStore } from 'pinia'; export type ZipLoaderStatus = 'inactive' | 'preparing' | 'compressing' | 'ready' | 'failed'; @@ -7,7 +7,7 @@ export const useExportStore = defineStore('export', { zip: { status: 'inactive' as ZipLoaderStatus, contents: null as Blob | null, - } + }, }), getters: { getZipStatus: (state) => () => { @@ -27,5 +27,5 @@ export const useExportStore = defineStore('export', { setZipContents(contents: Blob) { this.zip.contents = contents; }, - } + }, }); -- cgit v1.2.3-70-g09d2