aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utils/moments.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/moments.ts b/src/utils/moments.ts
index 9b8e0075..87f062af 100644
--- a/src/utils/moments.ts
+++ b/src/utils/moments.ts
@@ -33,7 +33,7 @@ export const getTimePosted = (date_time: string) => {
}
// More than 3 days
else if (difference >= 24 * 60 * 60 * 3) {
- time = datePosted.format('YYYY/MM/DD');
+ time = datePosted.format('MMMM D, YYYY');
}
return time;
};