Skip to content

Commit 4af35ac

Browse files
committed
formatDateTime
1 parent 8a5017f commit 4af35ac

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

apps/web/app/app.dub.co/(dashboard)/[slug]/programs/[programId]/payouts/payout-table.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import {
2525
useTable,
2626
} from "@dub/ui";
2727
import { CircleCheck, Dots, MoneyBill2, MoneyBills2 } from "@dub/ui/icons";
28-
import { cn } from "@dub/utils";
29-
import { formatDate, formatPeriod } from "@dub/utils/src/functions/datetime";
28+
import { cn, formatDateTime } from "@dub/utils";
29+
import { formatPeriod } from "@dub/utils/src/functions/datetime";
3030
import { fetcher } from "@dub/utils/src/functions/fetcher";
3131
import { Row } from "@tanstack/react-table";
3232
import { Command } from "cmdk";
@@ -141,9 +141,8 @@ const PayoutTableInner = memo(
141141
header: "Paid",
142142
cell: ({ row }) =>
143143
row.original.paidAt
144-
? formatDate(row.original.paidAt, {
144+
? formatDateTime(row.original.paidAt, {
145145
month: "short",
146-
day: "numeric",
147146
year: undefined,
148147
})
149148
: "-",

apps/web/app/partners.dub.co/(dashboard)/programs/[programSlug]/earnings/earnings-table.tsx

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import { CircleDollar } from "@dub/ui/icons";
2020
import {
2121
currencyFormatter,
2222
fetcher,
23-
formatDate,
2423
formatDateTime,
2524
getApexDomain,
2625
getPrettyUrl,
@@ -70,9 +69,13 @@ export function EarningsTablePartner({ limit }: { limit?: number }) {
7069
id: "createdAt",
7170
header: "Date",
7271
accessorKey: "timestamp",
72+
minSize: 140,
7373
cell: ({ row }) => (
7474
<p title={formatDateTime(row.original.createdAt)}>
75-
{formatDate(row.original.createdAt, { month: "short" })}
75+
{formatDateTime(row.original.createdAt, {
76+
month: "short",
77+
year: undefined,
78+
})}
7679
</p>
7780
),
7881
},

apps/web/app/partners.dub.co/(dashboard)/settings/payouts/payout-table.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ import {
1616
useTable,
1717
} from "@dub/ui";
1818
import { MoneyBill2 } from "@dub/ui/icons";
19-
import { DICEBEAR_AVATAR_URL } from "@dub/utils";
20-
import { formatPeriod } from "@dub/utils/src/functions/datetime";
19+
import { DICEBEAR_AVATAR_URL, formatPeriod } from "@dub/utils";
2120
import { useEffect, useState } from "react";
2221
import { PayoutDetailsSheet } from "./payout-details-sheet";
2322

0 commit comments

Comments
 (0)