Skip to content

Commit

Permalink
Fix : task-definition
Browse files Browse the repository at this point in the history
  • Loading branch information
oikkoikk committed Oct 4, 2023
1 parent 96e0ec9 commit 307d43a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion src/components/gnb/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export default function NavBar({ logo, profileDropdown }: Props) {

const profileButtonClickHandler = async () => {
if (isEditMode) {
console.log('updateUserProfile')
mutate();
await update({ ...session, name });
}
Expand Down
4 changes: 0 additions & 4 deletions src/hooks/useAuth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ export default function useAuth() {
const silentRefresh = async () => {
const response = await fetchUserAuthWithRefreshToken(refreshToken)
.then(async (res) => {
//TODO: 로그 추후 삭제
console.log('silent refresh! response: ', res);
await update(res);
return res;
})
Expand All @@ -43,8 +41,6 @@ export default function useAuth() {
});

const login = async (googleResponse: GoogleLoginCredential) => {
//TODO: 로그 추후 삭제
console.log('구글 토큰', googleResponse);
if (!googleResponse) return;

await signIn('credentials', {
Expand Down
2 changes: 1 addition & 1 deletion task-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"entryPoint": null,
"portMappings": [
{
"hostPort": 3000,
"hostPort": 443,
"protocol": "tcp",
"containerPort": 3000
}
Expand Down

0 comments on commit 307d43a

Please sign in to comment.