From 601d0832d5193ac7ae3a628df4bcfecbcc3dc747 Mon Sep 17 00:00:00 2001 From: "JDJG Inc. Official" Date: Mon, 3 Oct 2022 19:44:10 -0400 Subject: [PATCH 1/4] makes nitro date have more information --- components/Upload.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Upload.tsx b/components/Upload.tsx index b655cfb..f999593 100644 --- a/components/Upload.tsx +++ b/components/Upload.tsx @@ -491,7 +491,7 @@ export default function Upload(): ReactElement { console.log( chalk.bold.blue(`[DEBUG] `) + chalk.bold.cyan( - `[${moment(Date.now()).format("h:mm:ss a")}]` + `[${moment(Date.now()).format("h:mm:ss a LTS")}]` ) + ` ${chalk.yellow(`Loaded user premium until`)}` ); From a3f72c63df0d1ea977cc6743b54dbb190b89e98e Mon Sep 17 00:00:00 2001 From: "JDJG Inc. Official" Date: Mon, 3 Oct 2022 20:10:26 -0400 Subject: [PATCH 2/4] Going to try this with seconds --- components/Data.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Data.tsx b/components/Data.tsx index c531f7b..5271e89 100644 --- a/components/Data.tsx +++ b/components/Data.tsx @@ -1894,7 +1894,7 @@ export default function Data({ data, demo }: any): ReactElement { content={(Badges as any)[m].description .replace( /{until}/g, - moment(data?.user?.premium_until).format("MMMM Do YYYY") + moment(data?.user?.premium_until).format("MMMM Do YYYY LTC") ) .replace(/{p_2}/g, data?.dataFile ? "Their" : "Your") .replace(/{p_1}/g, data?.dataFile ? "They" : "You")} From 3c4aa9891c7f300956e0157915bb879a31367c69 Mon Sep 17 00:00:00 2001 From: "JDJG Inc. Official" Date: Mon, 3 Oct 2022 20:17:41 -0400 Subject: [PATCH 3/4] Revert "makes nitro date have more information" This reverts commit 601d0832d5193ac7ae3a628df4bcfecbcc3dc747. --- components/Upload.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Upload.tsx b/components/Upload.tsx index f999593..b655cfb 100644 --- a/components/Upload.tsx +++ b/components/Upload.tsx @@ -491,7 +491,7 @@ export default function Upload(): ReactElement { console.log( chalk.bold.blue(`[DEBUG] `) + chalk.bold.cyan( - `[${moment(Date.now()).format("h:mm:ss a LTS")}]` + `[${moment(Date.now()).format("h:mm:ss a")}]` ) + ` ${chalk.yellow(`Loaded user premium until`)}` ); From ffe8d459130a6f7d5745358a0207a54d2c769560 Mon Sep 17 00:00:00 2001 From: "JDJG Inc. Official" Date: Mon, 3 Oct 2022 20:18:59 -0400 Subject: [PATCH 4/4] Fixed LTS issue - make sure to do one commit --- components/Data.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Data.tsx b/components/Data.tsx index 5271e89..ffa293f 100644 --- a/components/Data.tsx +++ b/components/Data.tsx @@ -1894,7 +1894,7 @@ export default function Data({ data, demo }: any): ReactElement { content={(Badges as any)[m].description .replace( /{until}/g, - moment(data?.user?.premium_until).format("MMMM Do YYYY LTC") + moment(data?.user?.premium_until).format("MMMM Do YYYY LTS") ) .replace(/{p_2}/g, data?.dataFile ? "Their" : "Your") .replace(/{p_1}/g, data?.dataFile ? "They" : "You")}