mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
completely removed flow-related sagas
This commit is contained in:
parent
5f3accee48
commit
38eedab3c2
26 changed files with 326 additions and 310 deletions
9
src/utils/dom/hideLoader.ts
Normal file
9
src/utils/dom/hideLoader.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
export const hideLoader = () => {
|
||||
const loader = document.getElementById('main_loader');
|
||||
|
||||
if (!loader) {
|
||||
return;
|
||||
}
|
||||
|
||||
loader.style.display = 'none';
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue