undo export

This commit is contained in:
Daniel Waxweiler 2024-04-04 23:06:09 +02:00
parent 183c7bdd35
commit 4f0752b0ac
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ export function showLoadingIndicator(container) {
indicator.style.display = 'block'
}
export function hideLoadingIndicator(container) {
function hideLoadingIndicator(container) {
const indicator = container.querySelector('.loading-indicator')
indicator.style.display = 'none'
}