Skip to content

Commit

Permalink
fix: remove a trailing comma
Browse files Browse the repository at this point in the history
Signed-off-by: Spencer Norman <spencern@gmail.com>
  • Loading branch information
spencern committed Nov 26, 2019
1 parent aee6239 commit 2ae1318
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion package/src/components/AddressBook/v1/AddressBook.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,14 @@ class AddressBook extends Component {
// Render Methods
//
renderAccordionFormList() {
const { account: { addressBook }, addNewItemButtonText, components: { AccordionFormList, AddressForm }, deleteItemButtonText, entryFormSubmitButtonText, isSaving } = this.props;
const {
account: { addressBook },
addNewItemButtonText,
components: { AccordionFormList, AddressForm },
deleteItemButtonText,
entryFormSubmitButtonText,
isSaving
} = this.props;

const items = addressBook.map(({ _id, ...address }) => ({
id: _id,
Expand Down

0 comments on commit 2ae1318

Please sign in to comment.