Skip to content

Commit

Permalink
fix: popup 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Sep 22, 2023
1 parent 0f9d47f commit a3cb088
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/apis/popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ export const useOpenPopUp = () => {

setToken(mdl_tknValue);

window.open(`/pass?mdl_tkn=${mdl_tknValue}`, '_blank');
window.open(
`/pass?mdl_tkn=${mdl_tknValue}`,
'_blank',
'resizable=no,width=570,height=830,left=50,top=50',
);
},
},
);
Expand Down

0 comments on commit a3cb088

Please sign in to comment.