fix(frontend): move addon modal outside of animate presence

This commit is contained in:
Viren070
2025-11-22 14:15:36 +00:00
parent 80437360e8
commit b925e04650
@@ -631,6 +631,7 @@ function Content() {
)}
</PageWrapper>
)}
</AnimatePresence>
{/* Add/Edit Addon Modal (ensure both tabs can use it)*/}
<AddonModal
open={modalOpen}
@@ -640,7 +641,6 @@ function Content() {
initialValues={modalInitialValues as any}
onSubmit={handleModalSubmit}
/>
</AnimatePresence>
</>
);
}