SPIFFS ISSUE with WiFi LoRa 32

I am getting this error when trying to use spiffs with current project

E (30) SPIFFS: mount failed, -10025
19:09:00.656 -> Guru Meditation Error: Core 1 panic’ed (StoreProhibited). Exception was unhandled.
19:09:00.656 -> Core 1 register dump:
19:09:00.656 -> PC : 0x401712c8 PS : 0x00060930 A0 : 0x800dd664 A1 : 0x3ffb1ef0
19:09:00.656 -> A2 : 0x00000000 A3 : 0x00000000 A4 : 0x00000005 A5 : 0x0000ff00
19:09:00.693 -> A6 : 0x00ff0000 A7 : 0xff000000 A8 : 0x00000100 A9 : 0x00000001
19:09:00.693 -> A10 : 0x3ffb1f14 A11 : 0x00000000 A12 : 0x3ffc1d98 A13 : 0xecaf9f53
19:09:00.693 -> A14 : 0x00000000 A15 : 0x0000001e SAR : 0x00000004 EXCCAUSE: 0x0000001d
19:09:00.693 -> EXCVADDR: 0x00000126 LBEG : 0x400014fd LEND : 0x4000150d LCOUNT : 0xffffffff
19:09:00.727 ->
19:09:00.727 -> Backtrace: 0x401712c8:0x3ffb1ef0 0x400dd661:0x3ffb1f10 0x400dd8f0:0x3ffb1f40 0x400d2799:0x3ffb1f60 0x400d38e8:0x3ffb1f80 0x400e2a89:0x3ffb1fb0 0x4008932d:0x3ffb1fd0
19:09:00.727 ->

I have attempt to load just his code from Arduino IDE

#include “SPIFFS.h”

void setup()
{
// Initialize SPIFFS
if(!SPIFFS.begin()){
Serial.println(“An Error has occurred while mounting SPIFFS”);
return;
}

}

and receive

exit status 1
Error compiling for board WiFi LoRa 32(V2).

Any help on this would be greatly appriciated

hi,

we have updated the Development environment(the git version). please git pull.

I have done all that already