Skip to content

Commit

Permalink
feat: include reference to IMAGE api url (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseglego authored Oct 1, 2024
1 parent 4ea61ae commit dc53ac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Public/Ticket/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const PublicTicketPage = ({

<meta
property="og:url"
content={`${JSCONF.ticketsApi}/ticket/image/${id}`}
content={`${JSCONF.imagesApi}?ticketId=${id}`}
/>

<meta property="og:type" content="website" />
Expand Down
1 change: 1 addition & 0 deletions src/lib/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ export const JSCONF = {
endDate: new Date("12/07/2024 17:00:00"),
strDates: "DIC 05, 06, 07 2024",
place: "Santiago, Chile",
imagesApi: process.env.NEXT_PUBLIC_IMAGES_API_URL ?? "",
webpage: process.env.NEXT_PUBLIC_WEBPAGE ?? "",
ticketsCommunity: process.env.NEXT_PUBLIC_COMMUNITY_EVENT_URL ?? "",
ticketsApi: process.env.NEXT_PUBLIC_TICKETS_API_URL ?? "",
Expand Down

0 comments on commit dc53ac3

Please sign in to comment.