The solution for this problem was changing the ownership of the bow object to match the ownership of the client like this:
private void InteractServerRpc(NetworkObjectReference interactedPlayerNetworkObjectReference, ulong clientId)
{
NetworkObject.ChangeOwnership(clientId);
InteractClientRpc(interactedPlayerNetworkObjectReference);
}