We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26672c9 commit b308e43Copy full SHA for b308e43
app/[username]/RecentActivity.js
@@ -95,7 +95,9 @@ const RecentActivity = ({ activity }) => {
95
{activity.map((event, i) => {
96
return (
97
<div key={i} className="box overflow-hidden text-left hover:scale-100">
98
- <p className="text-sm text-gray-400">{new Date(event.timestamp).toLocaleString()}</p>
+ <p className="text-sm text-gray-400">{new Date(event.timestamp).toLocaleString('en-US', {
99
+ timeZone: 'Asia/Kolkata',
100
+ })}</p>
101
102
<div className="mt-2.5 font-medium text-gray-200 text-sm md:text-lg [&_a]:text-cyan-500 [&_a]:hover:underline">
103
<Activity event={event} />
0 commit comments