BLE HM-10 module creates Error message in Serial Monitor and doesnt connect in the app

Hello,
I am having some troubble getting the HM-10 BLE boardw working.
I know there are some topics about my problem but all of them didnt help me fixing it.
I see my BLE Module in Blynk, but it doesn´t connect.
In my Serial Monitor it says something with Packet too big.

My wiring:
VCC Module -> 5V Arduino Nano
GND Module -> GND Arduino Nano
RX Module -> TX Arduino Nano
TX Module -> RX Arduino Nano

Hardware:
HM-10 BLE Module
Arduino Nano
Latest Blynk app on IPhone 8

My code:

#define BLYNK_PRINT Serial


#include <SoftwareSerial.h>
SoftwareSerial SwSerial(10, 11); // RX, TX
    
#include <BlynkSimpleSerialBLE.h>
#include <SoftwareSerial.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "MyToken";

SoftwareSerial SerialBLE(10, 11); // RX, TX

void setup()
{
  // Debug console
  Serial.begin(9600);

  SerialBLE.begin(9600);
  Blynk.begin(SerialBLE, auth);

  Serial.println("Waiting for connections...");
}

void loop()
{
  Blynk.run();
  // You can inject your own code or combine it with other sketches.
  // Check other examples on how to communicate with Blynk. Remember
  // to avoid delay() function!
}

My SerialMonitor Output:

Greetings in regard!