Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
iRaySpace committed May 6, 2019
1 parent 934dd6e commit 6fdf19c
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/container/SalesContainer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -703,14 +703,10 @@ export default class SalesContainer extends React.Component {
};

onCloseViewOrder = () => {
Alert.alert(
"Close Order",
"Would you like to close order?",
[
{text: "No", style: "cancel"},
{text: "Yes", onPress: this.closeOrder}
],
);
Alert.alert("Close Order", "Would you like to close order?", [
{ text: "No", style: "cancel" },
{ text: "Yes", onPress: this.closeOrder },
]);
};

onTableClick = index => {
Expand Down

0 comments on commit 6fdf19c

Please sign in to comment.