We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e22c3 commit 3381ebbCopy full SHA for 3381ebb
modules/ROOT/examples/live-demos/comments-callback-with-mentions/index.js
@@ -19,6 +19,9 @@ import ('https://cdn.jsdelivr.net/npm/@faker-js/faker@9/dist/index.min.js').then
19
const currentUid = 'kalebwilson';
20
const adminUid = 'michaelcook';
21
22
+ const currentUser = userDb[currentUid];
23
+ const adminUser = userDb[adminUid];
24
+
25
const now = new Date();
26
const yesterday = new Date(now.getTime() - 24 * 60 * 60 * 1000).toISOString();
27
const anhourago = new Date(now.getTime() - 60 * 60 * 1000).toISOString();
0 commit comments