Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
azizjonnurov committed Dec 13, 2024
1 parent 43d5711 commit ba42281
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import {
VersionCheckbox,
} from '@folio/stripes-acq-components';

export const VersionHistoryViewExtendedInformation = ({ version = {} }) => {
const { folioInvoiceNo,
export const VersionHistoryViewExtendedInformation = ({ version }) => {
const {
folioInvoiceNo,
paymentMethod,
currency,
chkSubscriptionOverlap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ import {
VersionKeyValue,
} from '@folio/stripes-acq-components';

export const VersionHistoryViewVendorDetails = ({ version = {} }) => {
const { vendor, vendorInvoiceNo, accountingCode } = version;
export const VersionHistoryViewVendorDetails = ({ version }) => {
const {
vendor,
vendorInvoiceNo,
accountingCode,
} = version;

return (
<Row>
Expand Down

0 comments on commit ba42281

Please sign in to comment.