Skip to content

Commit

Permalink
Fix: None
Browse files Browse the repository at this point in the history
Refactor: Added Family to Order Types
Feat: None
  • Loading branch information
jiloysss authored and jiloysss committed Jul 24, 2019
1 parent c67ddc0 commit b2ab8e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/stories/components/ConfirmOrderModalComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ export default class ConfirmOrderModalComponent extends React.Component {
>
{OrderTypes}
</PickerComponent>
{this.state.orderType === "Dine-in" || this.state.orderType === "Family"
{this.state.orderType === "Dine-in" ||
this.state.orderType === "Family"
? [
<Label text="Select Table" />,
<Item regular>
Expand Down Expand Up @@ -155,4 +156,4 @@ const styles = StyleSheet.create({
alignItems: "center",
justifyContent: "center",
},
});
});

0 comments on commit b2ab8e1

Please sign in to comment.