Serial Monitor doesn't display anything

https://drive.google.com/drive/folders/1Jsp_6SYXYp23vF0InmZOD8Tj01qSyD4f?usp=sharing( google drive link for my esp32-gps example)
I USE A SAMPLE CODE TO TEST THE UBLOX NEO-M8N GPS FROM TINYGPS AND IT DOESN’T DISPLAY ANYTHING ON THE SERIAL MONITOR, YOU CAN HAVE A LOOK AT “PROBLEM PICTURES” FILE IN MY DRIVE LINK

As you can see in

pin 1 and 3 are the pins of the hardware Serial conenction. You should not create a software serial on these pins and connect the GPS module there like you do with your code

static const int RXPin = 3, TXPin = 1;
static const uint32_t GPSBaud = 9600;

// The TinyGPSPlus object
TinyGPSPlus gps;

// The serial connection to the GPS device
SoftwareSerial ss(RXPin, TXPin);

Choose any other RX and TX pins.

THANKS SO MUCH
YOU MAKE IT RUN, MAN
:heart_eyes: