Fix profile.ts typo

This commit is contained in:
Hsüan
2025-06-04 15:17:40 -07:00
committed by GitHub
parent 242499787e
commit 22d21df22b
+2 -2
View File
@@ -58,7 +58,7 @@ function animateDisappear(): Promise<void> {
if (!root || !iframe) {
return;
}
setStyles(root, styles.rootDissapear);
setStyles(root, styles.rootDisappear);
root.addEventListener('transitionend', handleTransitionEnd);
});
});
@@ -111,7 +111,7 @@ const styles = {
rootAppear: {
opacity: '1',
},
rootDissapear: {
rootDisappear: {
opacity: '0',
transition: 'opacity 0.3s ease-out',
},