We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff168c commit f1e9452Copy full SHA for f1e9452
1 file changed
src/i18n/utils.ts
@@ -111,7 +111,8 @@ export function getDateString({
111
!messageCreatedAt ||
112
(typeof messageCreatedAt === 'string' && !Date.parse(messageCreatedAt))
113
) {
114
- console.warn(notValidDateWarning);
+ // TODO: replace with proper logging (@stream-io/logger)
115
+ // console.warn(notValidDateWarning);
116
return null;
117
}
118
@@ -158,7 +159,8 @@ export function getDateString({
158
159
160
161
if (!tDateTimeParser) {
- console.warn(noParsingFunctionWarning);
162
163
+ // console.warn(noParsingFunctionWarning);
164
165
166
0 commit comments