Can't upload to more than 1 nano esp32 "dfu-util: More than one DFU capable USB device found!"

I am still having problems with this.

here is my output after trying to upload:

Sketch uses 286157 bytes (9%) of program storage space. Maximum is 3145728 bytes.
Global variables use 30552 bytes (9%) of dynamic memory, leaving 297128 bytes for local variables. Maximum is 327680 bytes.
"C:\Users\mna\AppData\Local\Arduino15\packages\arduino\tools\dfu-util\0.11.0-arduino5/dfu-util" --device 0x2341:0x0070 -D "C:\Users\mna\AppData\Local\arduino\sketches\C6FFD98AC9ABB6FC3DA24F4233FA3E66/Blink.ino.bin" -Q
dfu-util 0.11-arduino4

Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2021 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to http://sourceforge.net/p/dfu-util/tickets/

More than one DFU capable USB device found! Try `--list' and specify the serial number or disconnect all but one device

Failed uploading: uploading error: exit status 74

And here is my platform.local.txt file

# serial-discovery uses the property name `serialNumber`, while dfu-discovery uses the name `serial`, so only one of the
# two properties will be defined. Thus an empty fallback definition is required.
# This also provides backwards compatibility with tool versions that don't generate port properties.
# These definitions are overridden when the tool generates the property.
tools.dfu-util.upload.port.properties.serialNumber=
tools.dfu-util.upload.port.properties.serial=
# Both properties are referenced to support uploading when a port of either protocol is selected.
# The trailing comma causes the upload command to be valid even when neither property is defined, whether due to using a
# tool version that doesn't generate them, or when no port is selected.
tools.dfu-util.serial_number={upload.port.properties.serialNumber}{upload.port.properties.serial},
tools.dfu-util.upload.pattern="{path}/{cmd}" --device {vid.0}:{pid.0} -D "{build.path}/{build.project_name}.bin" -Q --serial {serial_number}

the file was placed in "C:\Users\mna\AppData\Local\Arduino15\packages\arduino\hardware\esp32\2.0.18-arduino.5\platform.local.txt"

Is there something I am missing here?