Skip to content

Commit 3634d51

Browse files
committed
fix: App.tsx 추가 수정사항 반영
1 parent 10b213e commit 3634d51

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
@@ -83,17 +83,17 @@ const WorkshopApp = ({ signOut, user = defaultUser }: WorkshopAppProps) => {
8383

8484
export default function App() {
8585
// This parameter will be used in the workshop
86-
// const signOut = undefined;
87-
// const user = defaultUser;
86+
const signOut = undefined;
87+
const user = defaultUser;
8888

8989
return (
90-
<Authenticator>
91-
{({ signOut, user }) => (
90+
// <Authenticator>
91+
// {({ signOut, user }) => (
9292
<WorkshopApp
9393
signOut={signOut}
9494
user={user ? convertAuthToUserType(user) : defaultUser}
9595
/>
96-
)}
97-
</Authenticator>
96+
// )}
97+
// </Authenticator>
9898
);
9999
}

0 commit comments

Comments
 (0)