refactor(ui): update LoginModal usage

This commit is contained in:
Thomas Camlong
2025-10-02 15:23:56 +02:00
parent e31b97f60e
commit 391a69f82e
2 changed files with 3 additions and 3 deletions

View File

@@ -69,7 +69,7 @@ export default function SubmitPage() {
</div>
</div>
{showLoginModal && <LoginModal onClose={() => setShowLoginModal(false)} />}
<LoginModal open={showLoginModal} onOpenChange={setShowLoginModal} />
</>
)
}