dont use [...path] routing since it breaks building statically
This commit is contained in:
@@ -5,7 +5,7 @@ export const useUploadStore = defineStore<
|
||||
{
|
||||
startIndex: number;
|
||||
files: UploadFile[];
|
||||
path: string | null;
|
||||
destination: { warrenId: string; path: string } | null;
|
||||
progress: {
|
||||
loadedBytes: number;
|
||||
totalBytes: number;
|
||||
@@ -15,7 +15,7 @@ export const useUploadStore = defineStore<
|
||||
state: () => ({
|
||||
startIndex: 0,
|
||||
files: [],
|
||||
path: null,
|
||||
destination: null,
|
||||
progress: null,
|
||||
}),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user