Skip to content

Commit f70d547

Browse files
feat: to fix EOF errors
1 parent 3c23a5d commit f70d547

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/components/Dialog/DIalogFooter.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export const DialogFooter = ({ className, children }: TDialogFooterProps) => {
1212
{children}
1313
</Modal.Footer>
1414
)
15-
}
15+
}

lib/components/Dialog/Dialog.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.deriv-dialog{
22
width:440px;
33
height:auto;
4-
}
4+
}

lib/components/Dialog/DialogBody.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export const DialogBody = ({ children, className }: TDialogBodyProps) => {
1212
{children}
1313
</Modal.Body>
1414
)
15-
}
15+
}

lib/components/Dialog/DialogHeader.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ export const DialogHeader = ({ className, hideCloseIcon = true, title, textClass
1717
</Text>
1818
</Modal.Header>
1919
)
20-
}
20+
}

lib/components/Dialog/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ export const Dialog = ({ bodyChildren,footerChildren,header,title,...rest }: TDi
2020
<DialogFooter children={footerChildren}/>
2121
</Modal>
2222
)
23-
}
23+
}

0 commit comments

Comments
 (0)