Skip to content

Fix LoadingOverlay spinner not fading after Mantine v7 migration

Yuto Takano requested to merge fix-loading-overlay-fade into master

Currently the LoadingOverlay used in various pages abruptly disappears 500ms after the loading is finished.

This is a bug, since the desired behaviour is that it fades away (with duration 500ms) immediately after loading is finished.

The bug is a result of an incorrect Mantine v7 migration nearly 2 years ago where we set the opacity prop on LoadingOverlay. That takes priority over any fade effects, hence the behaviour we see. This MR fixes it.

Merge request reports

Loading