Skip to content

Commit 7ff9850

Browse files
committed
feat: Prepare App.tsx for workshop authentication flow
🔧 Workshop Configuration: - Comment out Authenticator component for workshop setup - Add placeholder signOut and user variables for workshop steps - Maintain authentication structure for easy workshop activation - Keep all routes and functionality intact 📝 Notes: - Authenticator will be uncommented during workshop - signOut and user variables will be replaced with actual auth - This allows workshop participants to see the app without auth setup first
1 parent 3e96b3f commit 7ff9850

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/App.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,17 @@ const WorkshopApp = ({ signOut, user = defaultUser }: WorkshopAppProps) => {
7575

7676
export default function App() {
7777
// This parameter will be used in the workshop
78-
// const signOut = undefined;
79-
// const user = defaultUser;
78+
const signOut = undefined;
79+
const user = defaultUser;
8080

8181
return (
82-
<Authenticator>
83-
{({ signOut, user }) => (
82+
// <Authenticator>
83+
// {({ signOut, user }) => (
8484
<WorkshopApp
8585
signOut={signOut}
8686
user={user ? convertAuthToUserType(user) : defaultUser}
8787
/>
88-
)}
89-
</Authenticator>
88+
// )}
89+
// </Authenticator>
9090
);
9191
}

0 commit comments

Comments
 (0)