Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit c4def46

Browse files
committed
clean up
1 parent a8f87f5 commit c4def46

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/RouterWrapper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface IProviderWrapperProps {
2020
history?: History;
2121
}
2222

23-
const RouterWrapper: React.StatelessComponent<IProviderWrapperProps> = (props: IProviderWrapperProps): JSX.Element => {
23+
const RouterWrapper: React.StatelessComponent<IProviderWrapperProps> = (props: IProviderWrapperProps): JSX.Element => {
2424
const Router: any = props.isServerSide ? StaticRouter : ConnectedRouter;
2525
const history: History = props.isServerSide ? null : props.history;
2626

src/views/contact/ContactForm.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ class ContactForm extends React.Component<IProps> {
145145
private _renderRadio(field: any): JSX.Element {
146146
return (
147147
<div className="form-check">
148-
<label htmlFor={field.input.name} className="form-check-label">
148+
<label
149+
htmlFor={field.input.name}
150+
className="form-check-label"
151+
>
149152
<input
150153
{...field.input}
151154
checked={field.checked}

0 commit comments

Comments
 (0)