Every kind of TAA that I've seen creates artifacts around fast-moving objects. This may sound like a niche problem only found in fast-twitch games but it's cropped up in turn-based RPGs and factory/city builders. I personally turn it off as soon as I notice it. Unfortunately, some games have removed traditional MSAA as an option, and some are even making it difficult to turn off AA when TAA and FXAA are the only options (though you can usually override these restrictions with driver settings).
It's not that it's difficult to turn off TAA: it's that so many modern techniques do not work without temporal accumulation and anti-aliasing.
Ray tracing? Temporal accumulation and denoising. Irradiance cache? Temporal accumulation and denoising. most modern light rendering techniques cannot be done in time in a single frame. Add to that the fact that deferred or hybrid rendering makes implementing MSAA be anywhere between "miserable" and "impossible", and you have the situation we're in today.
The sad truth is that with rasterization every renderer needs to be designed around a specific set of antialiasing solutions. Antialiasing is like a big wall in your rendering pipeline, there's the stuff you can do before resolving and the stuff you can do afterwards. The problem with MSAA is that it is pretty much tightly coupled with all your architectural rendering decisions. To that end, TAA is simply the easiest to implement and it kills a lot of proverbial birds with one stone. And it can all be implemented as essentially a post processing effect, it has much less of the tight coupling.
MSAA only helps with geometric edges, shader aliasing can be combatted with prefiltering but even then it's difficult to get rid of it completely. MSAA also needs beefy multisample intermediate buffers, this makes it pretty much a non-starter on heavily deferred rendering pipelines, which throw away coverage information to fit their framebuffer budget. On top of that the industry moved to stochastic effects for rendering all kinds of things that were too expensive before, the latest being actual realtime path tracing. I know people moan about TAA and DLSS but to do realtime path tracing at 4k is sort of nuts really. I still consider it a bit of a miracle we can do it at all.
Personally, I wish there was more research by big players into things like texture space lighting, which makes shading aliasing mostly go away, plays nice with alpha blending and would make MSAA viable again. The issue there is with shading only the stuff you see and not wasting texels.