Skip to content

Commit

Permalink
chore: fix typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
AXeL-dev committed Jun 17, 2022
1 parent 77b7466 commit 6f39d98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Settings/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -470,9 +470,9 @@ export class Settings extends Component {
disabled={!this.state.options.isEnabled}
marginBottom={16}
>
{framesTypes.map((action) => (
<option key={action.value} value={action.value}>
{action.label}
{framesTypes.map((frameType) => (
<option key={frameType.value} value={frameType.value}>
{frameType.label}
</option>
))}
</SelectField>
Expand Down

0 comments on commit 6f39d98

Please sign in to comment.