Hi and thanks for the reply, unfortuanately I wasn't able to fix it by logging in as admin and going to Manage Disk Redundancy.
For any users in a similar issue,
I had to run the command
mdadm --manage /dev/md2 --fail /dev/sdc
Which failed the drive and then I had to format the drive the same as the existing one,
fdisk /dev/sdc
n for new partition
p for primary
1 for partition 1
t to select the type
L to show a list of types
fd to select the Linux Raid type
w to write changes,
Had to do the above for each partition and make sure you make the start and end blocks the same as the original disk,
then add the drive back into the mirror with,
mdadm --add /dev/md1 /dev/sdc1
and
mdadm --add /dev/md2 /dev/sdc2