diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
| commit | c9aefa81ca1950121d2357fc66afe15eb400f537 (patch) | |
| tree | fd6196b55626cea8101cd5a4a00cb2a00d8a495b /stores/export.ts | |
| parent | 1dd5d0fa8bb2ae794b263d1629a662166a9b9d08 (diff) | |
Fix eslint errors
Diffstat (limited to 'stores/export.ts')
| -rw-r--r-- | stores/export.ts | 6 |
1 files changed, 3 insertions, 3 deletions
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; }, - } + }, }); |
