fix(admin-next,types): fixes order page from breaking in admin server (#8730)

This commit is contained in:
Riqwan Thamir
2024-08-23 08:07:04 +02:00
committed by GitHub
parent f9749c5df6
commit 02c6574e01
5 changed files with 39 additions and 18 deletions
@@ -0,0 +1,2 @@
export const MEDUSA_STOREFRONT_URL =
__STOREFRONT_URL__ ?? "http://localhost:8000"
@@ -5,8 +5,7 @@ import copy from "copy-to-clipboard"
import React, { useState } from "react"
import { useTranslation } from "react-i18next"
import { getStylizedAmount } from "../../../../../lib/money-amount-helpers"
export const MEDUSA_BACKEND_URL = __STOREFRONT_URL__ ?? "http://localhost:8000"
import { MEDUSA_STOREFRONT_URL } from "../../../../../lib/storefront"
type CopyPaymentLinkProps = {
paymentCollection: AdminPaymentCollection
@@ -31,7 +30,9 @@ const CopyPaymentLink = React.forwardRef<any, CopyPaymentLinkProps>(
e.stopPropagation()
setDone(true)
copy(`${MEDUSA_BACKEND_URL}/payment-collection/${paymentCollection.id}`)
copy(
`${MEDUSA_STOREFRONT_URL}/payment-collection/${paymentCollection.id}`
)
setTimeout(() => {
setDone(false)