Skip to content

Commit d93212a

Browse files
chore: debug
1 parent 8de5ad7 commit d93212a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

framework/core/js/src/forum/components/PostStreamScrubber.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import Component from '../../common/Component';
33
import icon from '../../common/helpers/icon';
44
import formatNumber from '../../common/utils/formatNumber';
55
import ScrollListener from '../../common/utils/ScrollListener';
6-
import { NestedStringArray } from '@askvortsov/rich-icu-message-formatter';
76

87
/**
98
* The `PostStreamScrubber` component displays a scrubber which can be used to
@@ -94,22 +93,22 @@ export default class PostStreamScrubber extends Component {
9493
}
9594

9695
/**
97-
* @returns {NestedStringArray|string}
96+
* @returns {any|string}
9897
*/
9998
firstPostLabel() {
10099
return app.translator.trans('core.forum.post_scrubber.original_post_link');
101100
}
102101

103102
/**
104103
* @param {number} unreadCount
105-
* @returns {NestedStringArray|string}
104+
* @returns {any|string}
106105
*/
107106
unreadLabel(unreadCount) {
108107
return app.translator.trans('core.forum.post_scrubber.unread_text', { count: unreadCount });
109108
}
110109

111110
/**
112-
* @returns {NestedStringArray|string}
111+
* @returns {any|string}
113112
*/
114113
lastPostLabel() {
115114
return app.translator.trans('core.forum.post_scrubber.now_link');

0 commit comments

Comments
 (0)