Skip to content

Commit

Permalink
Fix checkForConflicts condition
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorflg committed Oct 14, 2024
1 parent 4b5beba commit 7fb5b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/clients/IOClients/infra/VBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ export class VBase extends InfraClient {
public checkForConflicts = async () => {
const response = await this.getConflicts().then(res => res.data)

return response?.data?.length > 0
return response?.length > 0
}
}

0 comments on commit 7fb5b42

Please sign in to comment.