Skip to content

Commit 469a2f6

Browse files
committed
fix(account settings): buttons not working
1 parent 69684ed commit 469a2f6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/ts/pages/account-settings.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,5 +243,9 @@ export const page = new PageWithUrlParams({
243243
});
244244

245245
onDocumentReady(() => {
246-
Skeleton.save("pageAccountSettings");
246+
setTimeout(() => {
247+
//band aid fix for now, we need to delay saving the skeleton
248+
// to allow the click listeners to be registered first
249+
Skeleton.save("pageAccountSettings");
250+
}, 0);
247251
});

0 commit comments

Comments
 (0)