Skip to content

Commit

Permalink
fix: Tax undefined value
Browse files Browse the repository at this point in the history
refactor: None
feat: None
  • Loading branch information
jiloysss authored and jiloysss committed Jul 2, 2019
1 parent e5eae87 commit 1eea81f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/store/PosStore/PrinterStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const Company = types
name: types.string,
header: types.string,
footer: types.string,
tax: types.optional(types.string,"0"),
tax: types.optional(types.string, "0"),
countryCode: types.optional(types.string, "PHP"),
})
.preProcessSnapshot(snapshot => assignUUID(snapshot, "Company"))
Expand Down Expand Up @@ -375,7 +375,6 @@ const Store = types
},
}));


const Printers = Store.create({});

export default Printers;

0 comments on commit 1eea81f

Please sign in to comment.