ci: added commit lint, build check, test and release (#31)
* ci: added commit lint, build check, test and release * refactor: fix compilation errors * ci: add checkout to the tests * test: resolved issues with running tests * chore: addressed PR comments * chore: renamed package-name in release-please
This commit is contained in:
@@ -261,7 +261,7 @@ export const useApiPeerLastCheque = (peerId: string) => {
|
||||
.finally(() => {
|
||||
setLoading(false)
|
||||
})
|
||||
}, [])
|
||||
}, [peerId])
|
||||
|
||||
return { peerCheque, isLoadingPeerCheque, error };
|
||||
}
|
||||
@@ -306,7 +306,7 @@ export const useApiPingPeer = (peerId: string) => {
|
||||
.finally(() => {
|
||||
setPingingPeer(false)
|
||||
})
|
||||
}, [])
|
||||
}, [peerId])
|
||||
|
||||
return { peerRTP, isPingingPeer, error };
|
||||
}
|
||||
@@ -328,7 +328,7 @@ export const useApiPeerLastCashout = (peerId: string) => {
|
||||
.finally(() => {
|
||||
setLoading(false)
|
||||
})
|
||||
}, [])
|
||||
}, [peerId])
|
||||
|
||||
return { peerCashout, isLoadingPeerCashout, error };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user