How to control two servo motor each with a potentiometer controlled wirlessly through NRF24L01+?

I was trying to control pan tilt wirelessly using NRF24L01+ , two potentiometer and arduino uno. I was using this code:-

Transmitter

#include <SPI.h>
#include <RF24.h>

RF24 radio(9, 10); // CE, CSN
const byte addresses[] = {"1Node"};
struct dataStruct {
  int angleValue_1;       
  int angleValue_2;
  } myData;

void setup() {
  radio.begin();
  radio.setChannel(83);
  radio.setDataRate(RF24_250KBPS);
  radio.setPALevel(RF24_PA_LOW);
  radio.openWritingPipe(addresses[0]);
  radio.stopListening();
}

void loop() {
  int potValue_1 = analogRead(A0);
  int potValue_2 = analogRead(A1);
  myData.angleValue_1 = map(potValue_1, 0, 1023, 0, 180);
  myData.angleValue_2 = map(potValue_2, 0, 1023, 0, 180);
  radio.write( &myData, sizeof(myData));
}

Receiver

#include <SPI.h>
#include <RF24.h>
#include <Servo.h>

RF24 radio(9, 10); // CE, CSN
const byte addresses[] = "1Node";
const byte pipe = 1;
Servo myServo_1;
Servo myServo_2;
struct dataStruct {
  int angleValue_1;        
  int angleValue_2;
  } myData;

void setup() {
  myServo_1.attach(7);
  myServo_2.attach(8);
  radio.begin();
  radio.setChannel(83);
  radio.setDataRate(RF24_250KBPS);
  radio.setPALevel(RF24_PA_LOW);
  radio.openReadingPipe(pipe, addresses[0]);
  radio.startListening();
}

void loop() {
  if (radio.available()) {
    while (radio.available()) {
      radio.read( &myData, sizeof(myData) );
      myServo_1.write(myData.angleValue_1);
      myServo_2.write(myData.angleValue_2);
      }
    }
}

The problem what I am facing with this code is only one servo motor is controlled that too with both potentiometer instead of one potentiometer for each servo. Please help me fixing this issue.

What is the arduino boards do you use on transmitter and receiver?

This looks like the same as this thread >> How to control two servo motor each with a potentiometer controlled wirlessly through NRF24L01 and Arduino uno?

Cross posting wastes time.

Yes i know but no one seeing that post that's why posted again sorry for that please help its urgent because

Both are arduino uno

because of insufficient planning. Every member asking questions waits for replies... The first question gets the first answer.

Plenty of people are seeing your original topic but perhaps they can't provide any more help and it already has 33 replies

This Topic has been locked as it is the identical or too similar your other topic.

Please do not duplicate your questions as doing so wastes the time and effort of the volunteers trying to help you as they are then answering the same thing in different places.

Please create one topic only for your question and choose the forum category carefully. If you have multiple questions about the same project then please ask your questions in the one topic as the answers to one question provide useful context for the others, and also you won’t have to keep explaining your project repeatedly.

Repeated duplicate posting could result in a temporary or permanent ban from the forum.

Could you take a few moments to Learn How To Use The Forum

It will help you get the best out of the forum in the future.

Thank you.