Skip to content

Commit

Permalink
fix: rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dolcalmi committed May 16, 2024
1 parent 079b850 commit 2c60086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/pay/components/invoice/receipt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import { type ReceiptProps } from "./index.types"

import GaloyIcon from "@/components/galoy-icon"

import { getLocaleConfig } from "@/utils/utils"
import { formattedDate, formattedTime } from "@/utils/date-util"
import { getLocaleConfig } from "@/lib/utils"
import { formattedDate, formattedTime } from "@/lib/utils/date-util"

function Receipt({ amount, currency, invoice, status }: ReceiptProps) {
if (!invoice) {
Expand Down
2 changes: 1 addition & 1 deletion apps/pay/components/payment-outcome/receipt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Image from "react-bootstrap/Image"
import styles from "./payment-outcome.module.css"

import GaloyIcon from "@/components/galoy-icon"
import { formattedDate, formattedTime } from "@/utils/date-util"
import { formattedDate, formattedTime } from "@/lib/utils/date-util"

interface Props {
amount: string | string[] | undefined
Expand Down

0 comments on commit 2c60086

Please sign in to comment.