Skip to content

Commit

Permalink
[FIX] Minor fix for production url
Browse files Browse the repository at this point in the history
  • Loading branch information
jpark0506 committed Jun 2, 2024
1 parent 0eb93e7 commit 784c0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ticket/createticket.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const CreateTicket :React.FC = (props: Props) => {
setTicketObject(getValues())
if (getValues()!=null){
qrCode.update({
data: `http://${process.env.REACT_APP_HOST}/ticket/redirect?key=${getValues().key}`
data: `${process.env.REACT_APP_HOST}/ticket/redirect?key=${getValues().key}`
});
}else{
alert('값을 입력해주세요');
Expand Down

0 comments on commit 784c0c7

Please sign in to comment.