Fix js issues on loading due to turbo config

This commit is contained in:
Alex 2026-06-09 13:13:23 -07:00
parent a48c25718f
commit 80e1f89c7e
4 changed files with 15 additions and 8 deletions

View file

@ -119,6 +119,9 @@ const photosUploadInit = () => {
};
}
init();
document.addEventListener('turbo:load', (event) => {
init();
});