Commit dea9c62 1 parent 4062f07 commit dea9c62 Copy full SHA for dea9c62
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const MergeList = () => {
15
15
. catch ( console . error ) ;
16
16
} ;
17
17
18
- const handleRemove = ( filename : string ) => {
18
+ const handleRemove = ( filename ? : string ) => {
19
19
ipcRenderer
20
20
. invoke ( 'remove-history' , { filename } )
21
21
. then ( loadHistory )
Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ export interface CanvasObjects {
33
33
clientWidth : number ;
34
34
}
35
35
export interface RenderPdfState {
36
- configPath : string ;
37
36
pdfFile : string ;
38
37
excelFile : string ;
39
38
combinePdf : boolean ;
40
39
pageNumber : number ;
41
40
canvasData ?: Record < number , CanvasObjects > ;
42
41
formData ?: Record < string , number > ;
42
+ configPath ?: string ;
43
43
}
44
44
interface FieldType {
45
45
type : string ;
You can’t perform that action at this time.
0 commit comments