Skip to content

Commit

Permalink
Fixed amalgamating business length to be more than 1
Browse files Browse the repository at this point in the history
  • Loading branch information
JazzarKarim committed Jan 22, 2024
1 parent fe44cf7 commit 54e1d98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Amalgamation/BusinessTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default class BusinessTable extends Mixins(AmalgamationMixin) {
@Emit('valid')
private emitValidity (): boolean {
return (
(this.businesses.length > 0) &&
(this.businesses.length > 1) &&
this.businesses.every(business => business.status === AmlStatuses.OK)
)
}
Expand Down

0 comments on commit 54e1d98

Please sign in to comment.