Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
parasharrajat committed Sep 29, 2023
1 parent c40cf89 commit 2d89659
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/stories/ButtonWithDropdownMenu.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ function Template(args) {
const Default = Template.bind({});
Default.args = {
buttonText: 'Pay using Expensify',
onPress: (e, item) => {alert(`Button ${item} is pressed.`)},
onPress: (e, item) => {
alert(`Button ${item} is pressed.`);
},
pressOnEnter: true,
options: [
{value: 'One', text: 'One'},
Expand Down

0 comments on commit 2d89659

Please sign in to comment.