Skip to content

Commit

Permalink
Merge branch 'master' into ac-devtools-v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jhen0409 committed Jul 26, 2023
2 parents ead0eb8 + 727b627 commit 92c0826
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/components/FormInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'

const styles = {
title: { textAlign: 'center' },
form: {
display: 'flex',
flexDirection: 'row',
Expand Down Expand Up @@ -53,7 +54,7 @@ export default class FormInput extends PureComponent {
const val = typeof value !== 'undefined' ? value : inputProps.value
return (
<div>
<div>{title}</div>
<div style={styles.title}>{title}</div>
<div style={styles.form}>
<input
onKeyDown={(e) => {
Expand Down
1 change: 0 additions & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ const handleReady = () => {
<App />
</PersistGate>
</Provider>,
document.getElementById('root'),
)
})
};
Expand Down

0 comments on commit 92c0826

Please sign in to comment.