Skip to content

Commit 7fb5b42

Browse files
committed
Fix checkForConflicts condition
1 parent 4b5beba commit 7fb5b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/clients/IOClients/infra/VBase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ export class VBase extends InfraClient {
4848
public checkForConflicts = async () => {
4949
const response = await this.getConflicts().then(res => res.data)
5050

51-
return response?.data?.length > 0
51+
return response?.length > 0
5252
}
5353
}

0 commit comments

Comments
 (0)