Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
The ts compiler whined about the comma. The linter wants it there ...
Browse files Browse the repository at this point in the history
  • Loading branch information
nirre7 committed Sep 25, 2018
1 parent b64e214 commit 65ef118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boilerplate/src/views/shared/text-field/text-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class TextField extends React.Component<TextFieldProps, {}> {
preset = "default",
style: styleOverride,
inputStyle: inputStyleOverride,
...rest,
...rest
} = this.props
const containerStyle: ViewStyle = { ...CONTAINER, ...PRESETS[preset], ...styleOverride }
const inputStyle: TextStyle = { ...INPUT, ...inputStyleOverride }
Expand Down

0 comments on commit 65ef118

Please sign in to comment.