Encountering a build error

encountering a build error whenever I try to build my project to webGL anyone else experience this FMOD version: 2.03.12
Unity version: 6000.3.5f1
Build target: WebGPU
Error: undefined symbol: FMOD5_DSP_AddInputPreallocated during wasm-ld linking

FIX:
Seems like they left in an unused code that breaks the linker
Commenting out in Fmod.cs

//\[DllImport(VERSION.dll)\]
//private static extern RESULT FMOD5_DSP_AddInputPreallocated      (IntPtr dsp, IntPtr input, out IntPtr connection);

It appears that this was fixed in 2.03.10, is it possible that some of your libs may be from an older version?