You can wipe your disk beforehand from the terminal:
# List block devices
lsblk
# Wipe partition table
sudo parted /dev/sda mklabel gpt
# Wipe all data
sudo dd if=/dev/zero of=/dev/sda bs=1M
Then reboot and proceed with the Fedora installer.
You can wipe your disk beforehand from the terminal:
# List block devices
lsblk
# Wipe partition table
sudo parted /dev/sda mklabel gpt
# Wipe all data
sudo dd if=/dev/zero of=/dev/sda bs=1M
Then reboot and proceed with the Fedora installer.