test game

This commit is contained in:
2025-07-26 19:51:55 +09:00
parent d89855338b
commit 0667ac58fb
3 changed files with 170 additions and 0 deletions

View File

@@ -118,6 +118,14 @@ export default function App() {
}
}, [adminData])
// Expose current user and agent for game page
useEffect(() => {
if (user && agent) {
window.currentUser = user
window.currentAgent = agent
}
}, [user, agent])
// Event listeners for blog communication
useEffect(() => {
// Clear OAuth completion flag once app is loaded