fix: Auto-Accept-Retry bei fehlendem Logbuch-Schlüssel ermöglichen
autoAcceptStarted wird zurückgesetzt, wenn logbookKey oder logbookId fehlen, damit der Einladungsflow erneut starten kann. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -144,7 +144,10 @@ export default function InvitationAcceptance({ onAccepted, onCancel }: Invitatio
|
|||||||
setIsLoggedIn(false)
|
setIsLoggedIn(false)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (!logbookKey || !logbookId) return
|
if (!logbookKey || !logbookId) {
|
||||||
|
autoAcceptStarted.current = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
setAccepting(true)
|
setAccepting(true)
|
||||||
setError(null)
|
setError(null)
|
||||||
|
|||||||
Reference in New Issue
Block a user